tools/llvm: Do not build with symbols
[minix3.git] / external / bsd / byacc / dist / test / calc1.tab.h
blob55477f1e5c89536826df3f4cd4f2cc10958a1cd6
1 /* $NetBSD: calc1.tab.h,v 1.1.1.3 2011/09/10 21:22:10 christos Exp $ */
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
15 int ival;
16 double dval;
17 INTERVAL vval;
18 } YYSTYPE;
19 #endif /* !YYSTYPE_IS_DECLARED */
20 extern YYSTYPE calc1_lval;