diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-27 11:51:02 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-27 11:51:02 +1100 |
commit | 7577b6d51c5180ec23f93cec79a5c77e54130558 (patch) | |
tree | 1b372bf5ccc89eba828ff15f87558ff695b6d75d /src/mem.c | |
parent | e597fbb916848df1f6fbd4da04c1ab6f89a25b45 (diff) |
fix compilation on mac
Diffstat (limited to 'src/mem.c')
-rw-r--r-- | src/mem.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,5 +1,9 @@ #include <celeritas.h> +fixed_arena fixed_arena_new(void *backing_buffer, size_t size, size_t alignment) { + TODO("") +} + void_pool void_pool_create(void* storage, const char* debug_label, u64 capacity, u64 entry_size) { size_t _memory_requirements = capacity * entry_size; // void* backing_buf = arena_alloc(a, memory_requirements); |