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