summaryrefslogtreecommitdiff
path: root/src/y.tab.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/y.tab.h')
-rw-r--r--src/y.tab.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/y.tab.h b/src/y.tab.h
new file mode 100644
index 0000000..1cb2fed
--- /dev/null
+++ b/src/y.tab.h
@@ -0,0 +1,12 @@
+#define Y_NAME 257
+#define Y_TYPE 258
+#define Y_BRAND 259
+#define Y_EOL 260
+#define Y_ID 261
+#define Y_STRING 262
+#define Y_INT 263
+typedef union {
+ const char *name;
+ int integer;
+} YYSTYPE;
+extern YYSTYPE yylval;