diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2020-06-22 22:42:20 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2020-06-22 22:42:20 +0000 |
commit | 5dd99b746d26517ef72ee914e30ece2761079321 (patch) | |
tree | 30d932dc7c9813aee58587bffceac1350e1ff900 /test/yacc/error.tab.c | |
parent | 8bb3d1b8fb77d3704e1de225c83b8b66ca673da8 (diff) |
Notes
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 47a39d8c13138..93d901149cae2 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 */ |