1 /*
2  * toc_parse_prefix.h -- yacc symbol redefinitions (for toc parser)
3  *
4  * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
5  * For license terms, see the file COPYING in this distribution.
6  */
7 
8 /* Remap normal yacc names so we can have multiple parsers
9  * see http://www.gnu.org/software/automake/manual/html_node/Yacc-and-Lex.html
10  */
11 
12 #define yymaxdepth	toc_yymaxdepth
13 #define yyparse		toc_yyparse
14 #define yylex		toc_yylex
15 #define yyerror		toc_yyerror
16 #define yylval		toc_yylval
17 #define yychar		toc_ychar
18 #define yydebug		toc_yydebug
19 #define yypact		toc_yypact
20 #define yyr1		toc_yyr1
21 #define yyr2		toc_yyr2
22 #define yydef		toc_yydef
23 #define yychk		toc_yychk
24 #define yypgo		toc_yypgo
25 #define yyact		toc_yyact
26 #define yyexca		toc_yyexca
27 #define yyerrflag	toc_yyerrflag
28 #define yynerrs		toc_yynerrs
29 #define yyps		toc_yyps
30 #define yypv		toc_yypv
31 #define yys		toc_yys
32 #define yy_yys		toc_yy_yys
33 #define yystate		toc_yystate
34 #define yytmp		toc_yytmp
35 #define yyv		toc_yyv
36 #define yy_yyv		toc_yy_yyv
37 #define yyval		toc_yyval
38 #define yylloc		toc_yylloc
39 #define yyreds		toc_yyreds
40 #define yytoks		toc_yytoks
41 #define yylhs		toc_yylhs
42 #define yylen		toc_yylen
43 #define yydefred	toc_yydefred
44 #define yydgoto		toc_yydgoto
45 #define yysinde		toc_yysindex
46 #define yyrindex	toc_yyrindex
47 #define yygindex	toc_yygindex
48 #define yytable		toc_yytable
49 #define yycheck		toc_yycheck
50 #define yyname		toc_yyname
51 #define yyrule		toc_yyrule
52