freebsd-skq/contrib/byacc/test/yacc/ok_syntax1.tab.h
bapt 380a6c91bc Update to byacc 20140409
Among all the modifications, this new byacc also solves a 14 year old bug [1]

PR:		bin/23254 [1]
Submitted by:	marka@nominum.com [1]
MFC after:	3 weeks
2014-04-23 05:57:45 +00:00

31 lines
546 B
C

#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;