summaryrefslogtreecommitdiffstats
path: root/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/parser.h b/parser.h
index af858a53..7bad9451 100644
--- a/parser.h
+++ b/parser.h
@@ -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);