xref: /netbsd-src/external/bsd/byacc/dist/test/yacc/calc1.tab.h (revision 3d8f5b8dd9f188f856affd984b68f2960ff20d65)
1 /*	$NetBSD: calc1.tab.h,v 1.2 2024/09/14 21:29:04 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 YYSTYPE
14 {
15 	int ival;
16 	double dval;
17 	INTERVAL vval;
18 } YYSTYPE;
19 #endif /* !YYSTYPE_IS_DECLARED */
20 extern YYSTYPE calc1_lval;
21