diff options
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -27,10 +27,10 @@ #include <stdio.h> extern long lineno; extern int errors; -extern obj_t *yyin_stream; +extern val yyin_stream; extern const wchar_t *spec_file; -extern obj_t *spec_file_str; +extern val spec_file_str; int yyparse(void); -obj_t *get_spec(void); -void yyerrorf(obj_t *s, ...); +val get_spec(void); +void yyerrorf(val s, ...); void yybadtoken(int tok, const char *context); |