summaryrefslogtreecommitdiff
path: root/expr.h
diff options
context:
space:
mode:
Diffstat (limited to 'expr.h')
-rw-r--r--expr.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/expr.h b/expr.h
deleted file mode 100644
index 4b4a874..0000000
--- a/expr.h
+++ /dev/null
@@ -1,9 +0,0 @@
-typedef struct {
- int type;
- union {
- int i;
- char *s;
- } u;
-} expr_yystype;
-
-#define YYSTYPE expr_yystype