diff options
Diffstat (limited to 'test/btyacc/inherit1.tab.h')
-rw-r--r-- | test/btyacc/inherit1.tab.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/btyacc/inherit1.tab.h b/test/btyacc/inherit1.tab.h new file mode 100644 index 0000000..3b8aa3d --- /dev/null +++ b/test/btyacc/inherit1.tab.h @@ -0,0 +1,25 @@ +#ifndef _inherit1__defines_h_ +#define _inherit1__defines_h_ + +#define GLOBAL 257 +#define LOCAL 258 +#define REAL 259 +#define INTEGER 260 +#define NAME 261 +#ifdef YYSTYPE +#undef YYSTYPE_IS_DECLARED +#define YYSTYPE_IS_DECLARED 1 +#endif +#ifndef YYSTYPE_IS_DECLARED +#define YYSTYPE_IS_DECLARED 1 +typedef union +{ + class cval; + type tval; + namelist * nlist; + name id; +} YYSTYPE; +#endif /* !YYSTYPE_IS_DECLARED */ +extern YYSTYPE inherit1_lval; + +#endif /* _inherit1__defines_h_ */ |