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