diff options
Diffstat (limited to 'conf/conf.h')
-rw-r--r-- | conf/conf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/conf.h b/conf/conf.h index d49ee5d..0853ae8 100644 --- a/conf/conf.h +++ b/conf/conf.h @@ -26,12 +26,14 @@ struct symbol { }; #define SYM_VOID 0 +#define SYM_PROTO 1 void cf_lex_init_tables(void); int cf_lex(void); void cf_lex_init(int flag); void cf_error(char *msg) NORET; void cf_allocate(void); +struct symbol *cf_default_name(char *prefix); /* Parser */ |