blob: 8a51fa00660e4366c8891acb4ef78c1582ccc721 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#define DIGIT 257
#define LETTER 258
#define OCT1 259
#define HEX1 260
#define HEX2 261
#define HEX3 262
#define STR1 263
#define STR2 265
#define BELL 266
#define BS 267
#define NL 268
#define LF 269
#define CR 270
#define TAB 271
#define VT 272
#define UMINUS 273
#ifdef YYSTYPE
#undef YYSTYPE_IS_DECLARED
#define YYSTYPE_IS_DECLARED 1
#endif
#ifndef YYSTYPE_IS_DECLARED
#define YYSTYPE_IS_DECLARED 1
typedef union
{
char * cval;
int ival;
double dval;
} YYSTYPE;
#endif /* !YYSTYPE_IS_DECLARED */
extern YYSTYPE ok_syntax1_lval;
|