aboutsummaryrefslogtreecommitdiff
path: root/etpo/grammar.h
diff options
context:
space:
mode:
Diffstat (limited to 'etpo/grammar.h')
-rw-r--r--etpo/grammar.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/etpo/grammar.h b/etpo/grammar.h
index 8e32d4f..c07a694 100644
--- a/etpo/grammar.h
+++ b/etpo/grammar.h
@@ -1,8 +1,8 @@
-/* A Bison parser, made by GNU Bison 3.0.2. */
+/* A Bison parser, made by GNU Bison 3.0.4. */
/* Bison interface for Yacc-like parsers in C
- Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
+ Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -67,7 +67,7 @@ extern int yydebug;
/* Value type. */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
-typedef union YYSTYPE YYSTYPE;
+
union YYSTYPE
{
#line 26 "grammar.y" /* yacc.c:1909 */
@@ -77,6 +77,8 @@ union YYSTYPE
#line 79 "grammar.h" /* yacc.c:1909 */
};
+
+typedef union YYSTYPE YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define YYSTYPE_IS_DECLARED 1
#endif
bgstack15