diff --git a/src/yacc/parser.y b/src/yacc/parser.y index fbe3d5a..41dfd6c 100644 --- a/src/yacc/parser.y +++ b/src/yacc/parser.y @@ -1,4 +1,5 @@ %{ + #include extern int yylineno; int yyerror(char*); @@ -11,5 +12,6 @@ program: ; %% int yyerror(char *s) { + ERROR("%s", s); return 0; } \ No newline at end of file