diff options
Diffstat (limited to 'tcc.h')
| -rw-r--r-- | tcc.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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; |
