gcc-papermario/bi-parser.h
2020-09-20 21:06:00 -04:00

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;