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