diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-04-14 00:08:17 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-04-14 15:26:09 +0900 |
commit | a77a05dc9cf24a8c88b9d9c70e8984f936d075f3 (patch) | |
tree | 1f5bd384aa5e1c7b946fd2d645c0408c713a95e9 /scripts/kconfig/menu.c | |
parent | 08718745d8610c2ed9870568b8d9c01b7f103efb (diff) | |
download | lwn-a77a05dc9cf24a8c88b9d9c70e8984f936d075f3.tar.gz lwn-a77a05dc9cf24a8c88b9d9c70e8984f936d075f3.zip |
kconfig: split menu.c out of parser.y
Compile menu.c as an independent compilation unit.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/menu.c')
-rw-r--r-- | scripts/kconfig/menu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 8b2108b74821..606ba8a63c24 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -9,6 +9,7 @@ #include <string.h> #include "lkc.h" +#include "internal.h" static const char nohelp_text[] = "There is no help available for this option."; |