diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-21 09:33:05 +0100 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-28 14:22:38 +0100 |
commit | cbafbf7f551c3a03fb9440932f1ca13056ca40a6 (patch) | |
tree | 185323683e7ad6596c7eba41f705e2bea1a053f6 /scripts/kconfig/zconf.y | |
parent | kconfig: split some C files out of zconf.y (diff) | |
download | linux-cbafbf7f551c3a03fb9440932f1ca13056ca40a6.tar.xz linux-cbafbf7f551c3a03fb9440932f1ca13056ca40a6.zip |
kconfig: split the lexer out of zconf.y
Compile zconf.lex.c independently of the other files.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig/zconf.y')
-rw-r--r-- | scripts/kconfig/zconf.y | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y index a990f46f3825..69409abc7dc2 100644 --- a/scripts/kconfig/zconf.y +++ b/scripts/kconfig/zconf.y @@ -20,7 +20,6 @@ int cdebug = PRINTD; -int yylex(void); static void yyerror(const char *err); static void zconfprint(const char *err, ...); static void zconf_error(const char *err, ...); @@ -729,6 +728,5 @@ void zconfdump(FILE *out) } } -#include "zconf.lex.c" #include "util.c" #include "menu.c" |