diff options
Diffstat (limited to 'test/yacc/error.tab.c')
-rw-r--r-- | test/yacc/error.tab.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/yacc/error.tab.c b/test/yacc/error.tab.c index 47a39d8c1313..93d901149cae 100644 --- a/test/yacc/error.tab.c +++ b/test/yacc/error.tab.c @@ -190,13 +190,15 @@ static const char *const error_rule[] = { }; #endif +#if YYDEBUG int yydebug; -int yynerrs; +#endif int yyerrflag; int yychar; YYSTYPE yyval; YYSTYPE yylval; +int yynerrs; /* define the initial stack-sizes */ #ifdef YYSTACKSIZE @@ -245,7 +247,7 @@ yyerror(const char* s) { printf("%s\n", s); } -#line 249 "error.tab.c" +#line 251 "error.tab.c" #if YYDEBUG #include <stdio.h> /* needed for printf */ |