aboutsummaryrefslogtreecommitdiff
path: root/lib/alloc/arena_alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/alloc/arena_alloc.c')
-rw-r--r--lib/alloc/arena_alloc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/alloc/arena_alloc.c b/lib/alloc/arena_alloc.c
index 965c6a7..832f5b0 100644
--- a/lib/alloc/arena_alloc.c
+++ b/lib/alloc/arena_alloc.c
@@ -11,7 +11,6 @@
#include <unistd.h>
#include "_attrs.h"
-#include "_charN_t.h"
#include "alloc.h"
#include "error.h"
#include "macros.h"
@@ -19,7 +18,7 @@
#define PAD(len, align) (((len) + (align) - 1) & ~((align) - 1))
struct arena_blk {
- char8_t *head, *tail, *fngr;
+ uint8_t *head, *tail, *fngr;
struct arena_blk *next;
};