xref: /minix3/external/bsd/byacc/dist/test/btyacc/ok_syntax1.tab.h (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc /*	$NetBSD: ok_syntax1.tab.h,v 1.1.1.1 2015/01/03 22:58:25 christos Exp $	*/
2*0a6a1f1dSLionel Sambuc 
3*0a6a1f1dSLionel Sambuc #ifndef _ok_syntax1__defines_h_
4*0a6a1f1dSLionel Sambuc #define _ok_syntax1__defines_h_
5*0a6a1f1dSLionel Sambuc 
6*0a6a1f1dSLionel Sambuc #define DIGIT 257
7*0a6a1f1dSLionel Sambuc #define LETTER 258
8*0a6a1f1dSLionel Sambuc #define OCT1 259
9*0a6a1f1dSLionel Sambuc #define HEX1 260
10*0a6a1f1dSLionel Sambuc #define HEX2 261
11*0a6a1f1dSLionel Sambuc #define HEX3 262
12*0a6a1f1dSLionel Sambuc #define STR1 263
13*0a6a1f1dSLionel Sambuc #define STR2 265
14*0a6a1f1dSLionel Sambuc #define BELL 266
15*0a6a1f1dSLionel Sambuc #define BS 267
16*0a6a1f1dSLionel Sambuc #define NL 268
17*0a6a1f1dSLionel Sambuc #define LF 269
18*0a6a1f1dSLionel Sambuc #define CR 270
19*0a6a1f1dSLionel Sambuc #define TAB 271
20*0a6a1f1dSLionel Sambuc #define VT 272
21*0a6a1f1dSLionel Sambuc #define UMINUS 273
22*0a6a1f1dSLionel Sambuc #ifdef YYSTYPE
23*0a6a1f1dSLionel Sambuc #undef  YYSTYPE_IS_DECLARED
24*0a6a1f1dSLionel Sambuc #define YYSTYPE_IS_DECLARED 1
25*0a6a1f1dSLionel Sambuc #endif
26*0a6a1f1dSLionel Sambuc #ifndef YYSTYPE_IS_DECLARED
27*0a6a1f1dSLionel Sambuc #define YYSTYPE_IS_DECLARED 1
28*0a6a1f1dSLionel Sambuc typedef union
29*0a6a1f1dSLionel Sambuc {
30*0a6a1f1dSLionel Sambuc     char *	cval;
31*0a6a1f1dSLionel Sambuc     int		ival;
32*0a6a1f1dSLionel Sambuc     double	dval;
33*0a6a1f1dSLionel Sambuc } YYSTYPE;
34*0a6a1f1dSLionel Sambuc #endif /* !YYSTYPE_IS_DECLARED */
35*0a6a1f1dSLionel Sambuc extern YYSTYPE ok_syntax1_lval;
36*0a6a1f1dSLionel Sambuc 
37*0a6a1f1dSLionel Sambuc #endif /* _ok_syntax1__defines_h_ */
38