From 9cf4667331b97f1123f4156273a46558e27c2d2d Mon Sep 17 00:00:00 2001 From: "@syxhe" Date: Mon, 21 Apr 2025 17:31:37 -0500 Subject: Start work on cqueue implementation, create cleanup set of functions --- src/arena.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/arena.c') 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 @@ #include #include -#define VALLOC(nmemb, size) ((___VXGG___USE_XALLOC_FOR_ARENAS___ > 0) ? xmalloc((nmemb) * (size)) : malloc((nmemb) * (size))) - typedef struct an { void *membase; void *memcur; -- cgit v1.2.3