mirror of
https://github.com/pmret/gcc-papermario.git
synced 2024-11-08 11:53:01 +01:00
13 lines
176 B
C
13 lines
176 B
C
|
typedef union
|
||
|
{
|
||
|
char *string;
|
||
|
struct def *def;
|
||
|
struct variation *variation;
|
||
|
struct node *node;
|
||
|
} YYSTYPE;
|
||
|
#define DEFOP 258
|
||
|
#define STRING 259
|
||
|
|
||
|
|
||
|
extern YYSTYPE yylval;
|