diff options
author | Martin Mares <mj@ucw.cz> | 1998-11-27 21:07:02 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-11-27 21:07:02 +0000 |
commit | 8450be97d6ffb052fce95292d39c3f67afbcdc1c (patch) | |
tree | 36073a991abcc9a33582f976a7bf2cab4314352f /conf/conf.h | |
parent | 906b0170a41cc0d8ea11c7bae0a9fea3d18fe6d1 (diff) |
Added generator of default names.
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 d49ee5db..0853ae8e 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 */ |