diff options
Diffstat (limited to 'util/bincfg/bincfg.h')
-rw-r--r-- | util/bincfg/bincfg.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/util/bincfg/bincfg.h b/util/bincfg/bincfg.h index c0e1242f83..b8c668889e 100644 --- a/util/bincfg/bincfg.h +++ b/util/bincfg/bincfg.h @@ -37,12 +37,13 @@ struct blob { unsigned int lenactualblob; }; -static struct field *putsym(field_ptr_t, char const *, unsigned int); -static struct field *getsym(field_ptr_t, char const *); -static void yyerror(FILE *, field_ptr_t, char const *); -int yylex(void); +static struct field *putsym (char const *, unsigned int); +static struct field *getsym (char const *); +static void yyerror (FILE* fp, char const *); +int yylex (void); static struct blob *binary; +static struct field *sym_table; static struct field *sym_table_tail; #endif /* __BINCFG_H */ |