diff options
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -154,7 +154,11 @@ struct string { obj_common; wchar_t *str; val len; - val alloc; +#if HAVE_MALLOC_USABLE_SIZE + ucnum hash; +#else + cnum alloc; +#endif }; typedef struct { |