1
0
mirror of https://github.com/stefanocasazza/ULib.git synced 2025-09-28 19:05:55 +08:00
ULib/tests/ulib/test_bison.h
stefanocasazza 877766b00d bug fixing
2015-07-10 19:16:37 +02:00

14 lines
360 B
C

#ifndef YYTOKENTYPE
#define YYTOKENTYPE
enum yytokentype { NUM = 258, NEG = 259 };
#endif
#define NUM 258
#define NEG 259
#if !defined YYSTYPE && !defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE { int number; UFlexerReference ref; } YYSTYPE;
# define yystype YYSTYPE
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
#endif
extern YYSTYPE yylval;