diff options
Diffstat (limited to 'src/htable.h')
-rw-r--r-- | src/htable.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/htable.h b/src/htable.h index 10d04c1..efd7cac 100644 --- a/src/htable.h +++ b/src/htable.h @@ -69,9 +69,7 @@ struct name { \ } #define HTABLE_ENTRY(type) \ -struct { \ - struct type *next; /* To build the bucket chain list. */ \ -} +struct type *next /* To build the bucket chain list. */ #define HTABLE_SIZE(head) \ (sizeof (*(head)->bkts) ? sizeof ((head)->bkts) / sizeof (*(head)->bkts) : 0) |