xref: /netbsd-src/external/bsd/byacc/dist/test/yacc/calc1.tab.h (revision a24efa7dea9f1f56c3bdb15a927d3516792ace1c)
1 /*	$NetBSD: calc1.tab.h,v 1.1.1.3 2016/01/09 21:59:45 christos Exp $	*/
2 
3 #define DREG 257
4 #define VREG 258
5 #define CONST 259
6 #define UMINUS 260
7 #ifdef YYSTYPE
8 #undef  YYSTYPE_IS_DECLARED
9 #define YYSTYPE_IS_DECLARED 1
10 #endif
11 #ifndef YYSTYPE_IS_DECLARED
12 #define YYSTYPE_IS_DECLARED 1
13 typedef union
14 {
15 	int ival;
16 	double dval;
17 	INTERVAL vval;
18 } YYSTYPE;
19 #endif /* !YYSTYPE_IS_DECLARED */
20 extern YYSTYPE calc1_lval;
21