summaryrefslogtreecommitdiff
path: root/expr.h
blob: 4b4a8748f14f541da27915f1955d81cbc14cce00 (plain)
1
2
3
4
5
6
7
8
9
typedef struct {
	int type;
	union {
		int i;
		char *s;
	} u;
} expr_yystype;

#define YYSTYPE expr_yystype