13 static void *default_malloc(
size_t size,
void *user)
20 static void *default_realloc(
void *ptr,
size_t new_size,
size_t old_size,
void *user)
25 return realloc(ptr, new_size);
28 static void default_free(
void *ptr,
size_t size,
void *user)
36 static arena_t gDefaultAlloc = {
37 .
name =
"default global allocator",
38 .fn_malloc = default_malloc,
39 .fn_realloc = default_realloc,
40 .fn_free = default_free
45 return &gDefaultAlloc;
#define CT_UNUSED(x)
mark a variable as unused
arena_t * ctu_default_alloc(void)
get the default allocator
const char * name
the name of the allocator