aboutsummaryrefslogtreecommitdiff
path: root/tcc.h
diff options
context:
space:
mode:
Diffstat (limited to 'tcc.h')
-rw-r--r--tcc.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/tcc.h b/tcc.h
index c284880..3b98a8c 100644
--- a/tcc.h
+++ b/tcc.h
@@ -400,7 +400,11 @@ typedef union CValue {
double d;
float f;
uint64_t i;
- struct CString *cstr;
+ struct {
+ int size;
+ const void *data;
+ void *data_allocated;
+ } str;
int tab[LDOUBLE_SIZE/4];
} CValue;