summaryrefslogtreecommitdiff
path: root/src/arena.c
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2025-04-21 17:31:37 -0500
committer@syxhe <https://t.me/syxhe>2025-04-21 17:31:37 -0500
commit9cf4667331b97f1123f4156273a46558e27c2d2d (patch)
tree091766ab0cb3345bc9e61a2387dc65ca7714569c /src/arena.c
parentd47f45a5e3e40b48131409071b119b442c78bffc (diff)
Start work on cqueue implementation, create cleanup set of functions
Diffstat (limited to 'src/arena.c')
-rw-r--r--src/arena.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/arena.c b/src/arena.c
index 07c28dc..f944661 100644
--- a/src/arena.c
+++ b/src/arena.c
@@ -7,8 +7,6 @@
7#include <errno.h> 7#include <errno.h>
8#include <error.h> 8#include <error.h>
9 9
10#define VALLOC(nmemb, size) ((___VXGG___USE_XALLOC_FOR_ARENAS___ > 0) ? xmalloc((nmemb) * (size)) : malloc((nmemb) * (size)))
11
12typedef struct an { 10typedef struct an {
13 void *membase; 11 void *membase;
14 void *memcur; 12 void *memcur;