Defines the default heap allocator wrappers. More...
#include <stddef.h>

Go to the source code of this file.
Functions | |
Default Allocator | |
| void * | sys_malloc (size_t size) |
| Allocate memory from the default allocator. More... | |
| void * | sys_calloc (size_t count, size_t size) |
| Allocate zero-initialized memory from the default allocator. More... | |
| void * | sys_realloc (void *ptr, size_t size) |
| Resize an allocation owned by the default allocator. More... | |
| void | sys_free (void *ptr) |
| Release an allocation owned by the default allocator. More... | |
Defines the default heap allocator wrappers.
Definition in file mem.h.