Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | mjames | 1 | #ifndef BISON_EAGLE_YACC_TAB_H |
2 | #define BISON_EAGLE_YACC_TAB_H |
||
3 | |||
4 | #ifndef YYSTYPE |
||
5 | typedef union |
||
6 | { |
||
7 | char *string; |
||
8 | } yystype; |
||
9 | #define YYSTYPE yystype |
||
10 | #define YYSTYPE_IS_TRIVIAL 1 |
||
11 | #endif |
||
12 | #define SPC 257 |
||
13 | #define NL 258 |
||
14 | #define ASTRING 259 |
||
15 | |||
16 | extern YYSTYPE yylval; |
||
17 | |||
18 | #endif /* not BISON_EAGLE_YACC_TAB_H */ |