X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=blobdiff_plain;f=config%2Fzconf.y;h=60936c76865bfb07e6fb1f2767bc1514e69a6169;hp=4394ef915dcc8a3659c3be9e04014c1488d234dc;hb=132500ec775ea681a254cefa862d955f7adff890;hpb=18b696a20bbca64a93dfecae0fdff3fb0dc85166 diff --git a/config/zconf.y b/config/zconf.y index 4394ef9..60936c7 100644 --- a/config/zconf.y +++ b/config/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, ...); @@ -36,7 +35,6 @@ static struct menu *current_menu, *current_entry; %union { char *string; - struct file *file; struct symbol *symbol; struct expr *expr; struct menu *menu; @@ -497,7 +495,6 @@ void conf_parse(const char *name) zconf_initscan(name); _menu_init(); - rootmenu.prompt = menu_add_prompt(P_MENU, "CARL9170 Firmware Configuration", NULL); if (getenv("ZCONF_DEBUG")) yydebug = 1; @@ -730,10 +727,5 @@ void zconfdump(FILE *out) } } -#include "zconf.lex.c" #include "util.c" -#include "confdata.c" -#include "expr.c" -#include "symbol.c" #include "menu.c" -#include "preprocess.c"