diff options
Diffstat (limited to 'include/types.h')
-rw-r--r-- | include/types.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/types.h b/include/types.h index f57f33ab6..d6cd0735a 100644 --- a/include/types.h +++ b/include/types.h @@ -131,10 +131,12 @@ typedef union { double g; } PROPERLY_ALIGNED_TYPE; -typedef struct string_list { +struct string_list { struct string_list *next; unsigned int flags; char d[1]; -} *STRLIST; +}; +typedef struct string_list *STRLIST; +typedef struct string_list *strlist_t; #endif /*G10_TYPES_H*/ |