aboutsummaryrefslogtreecommitdiff
path: root/tcc.h
diff options
context:
space:
mode:
Diffstat (limited to 'tcc.h')
-rw-r--r--tcc.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/tcc.h b/tcc.h
index 0db48e2..6166dd0 100644
--- a/tcc.h
+++ b/tcc.h
@@ -198,7 +198,10 @@ typedef struct SValue {
typedef struct Sym {
int v; /* symbol token */
long r; /* associated register */
- long c; /* associated number */
+ union {
+ long c; /* associated number */
+ int *d; /* define token stream */
+ };
CType type; /* associated type */
struct Sym *next; /* next related symbol */
struct Sym *prev; /* prev symbol in stack */