diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2024-10-16 04:43:49 +0200 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-16 04:43:49 +0200 |
| commit | 327f33ef24cfca7c5c4bb8c00f82a19514dc0346 (patch) | |
| tree | d2551239a6fc83805b609245f718c151b46f211a | |
| parent | 4982a5779b16c7eddb9c5b409d96a46bbddc6627 (diff) | |
Fix include name
| -rw-r--r-- | lib/alloc/arena_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |