diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-07-02 00:34:12 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-07-02 00:34:12 +0200 |
commit | f05c9eddc9f4dff41016b5363925e59c2de671e2 (patch) | |
tree | f5c9bcaf2ed1def2f5f63b45192b093ae7413637 /test | |
parent | 82c4e29648e972de9eb0836cf3e9f89fc8cee7d8 (diff) |
Completely rework how types are handled
Diffstat (limited to 'test')
-rw-r--r-- | test/arena.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/arena.c b/test/arena.c index 5efd162..e09aceb 100644 --- a/test/arena.c +++ b/test/arena.c @@ -6,10 +6,9 @@ #include <unistd.h> #include "alloc.h" +#include "common.h" #include "test-internal.h" -#define lengthof(xs) (sizeof(xs) / sizeof(*(xs))) - static void make_and_free(void), make_and_resize(void), free_empty_arena(void), |