From 2815045efa2ee9693b99fdaed189efdad704d033 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 3 Oct 2024 18:51:02 +0200 Subject: Use uint8_t instead of char8_t pointers in arena blocks --- lib/alloc/arena_alloc.c | 3 +-- 1 file changed, 1 insertion(+), 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 #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; }; -- cgit v1.2.3