void * sys_calloc(size_t count, size_t size)
Allocate zero-initialized memory from the default allocator.
void * sys_malloc(size_t size)
Allocate memory from the default allocator.
void * sys_realloc(void *ptr, size_t size)
Resize an allocation owned by the default allocator.
void sys_free(void *ptr)
Release an allocation owned by the default allocator.