From 327f33ef24cfca7c5c4bb8c00f82a19514dc0346 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Wed, 16 Oct 2024 04:43:49 +0200 Subject: Fix include name --- lib/alloc/arena_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/alloc/arena_alloc.c b/lib/alloc/arena_alloc.c index c25c132..c32381c 100644 --- a/lib/alloc/arena_alloc.c +++ b/lib/alloc/arena_alloc.c @@ -12,7 +12,7 @@ #include "_attrs.h" #include "alloc.h" -#include "error.h" +#include "errors.h" #include "macros.h" #define PAD(len, align) (((len) + (align) - 1) & ~((align) - 1)) -- cgit v1.2.3