diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-04-17 15:12:03 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-04-17 15:12:03 -0400 |
commit | 152d6b74f65da60bedb6fb0d14bf65984b839796 (patch) | |
tree | 0d400744ed6b36cba31979263975cce6616b73ce /expr.h | |
parent | 028f700584306cd465ddb18231ecc41c17418082 (diff) |
it does addition
Diffstat (limited to 'expr.h')
-rw-r--r-- | expr.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +typedef struct { + int type; + union { + int i; + char *s; + } u; +} expr_yystype; + +#define YYSTYPE expr_yystype |