2003-03-01 13:06:40 +03:00
|
|
|
#ifndef BISON_Y_TAB_H
|
|
|
|
# define BISON_Y_TAB_H
|
|
|
|
|
|
|
|
#ifndef YYSTYPE
|
2000-07-26 04:22:40 +04:00
|
|
|
typedef union {
|
|
|
|
int i;
|
|
|
|
char *s;
|
2003-03-01 13:06:40 +03:00
|
|
|
} yystype;
|
|
|
|
# define YYSTYPE yystype
|
|
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
|
|
#endif
|
|
|
|
# define COND 257
|
|
|
|
# define REPEAT 258
|
|
|
|
# define TYPE 259
|
|
|
|
# define NAME 260
|
|
|
|
# define NUMBER 261
|
|
|
|
# define UNIT 262
|
2000-07-26 04:22:40 +04:00
|
|
|
|
|
|
|
|
|
|
|
extern YYSTYPE yylval;
|
2003-03-01 13:06:40 +03:00
|
|
|
|
|
|
|
#endif /* not BISON_Y_TAB_H */
|