diff options
Diffstat (limited to 'src/core/std_allocator.c')
-rw-r--r-- | src/core/std_allocator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/std_allocator.c b/src/core/std_allocator.c index ecfa806..2bfe78a 100644 --- a/src/core/std_allocator.c +++ b/src/core/std_allocator.c @@ -27,7 +27,7 @@ static void *reallocate(void *old_ptr, size_t old_size, size_t new_size, size_t return realloc(old_ptr, new_size); } -SandAllocator sand_new_std_allocator() { +SandAllocator sand_get_std_allocator(void) { return (SandAllocator) { .allocate = allocate, .deallocate = deallocate, |