Fix compile error

This commit is contained in:
flysand7 2023-07-28 22:52:54 +11:00
parent fff9716dc8
commit bd3622dddf
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ void *allocator_alloc(Cia_Allocator *alloc, u64 size, u64 alignment);
void allocator_free_size(Cia_Allocator *alloc, void *region_ptr, u64 region_size);
void allocator_free(Cia_Allocator *alloc, void *region_ptr);
void allocator_free_all(Cia_Allocator *alloc);
void *allocator_resize(Cia_Allocator *alloc, void *old_ptr, u64 old_size, u64 new_size);
void *allocator_resize(Cia_Allocator *alloc, void *old_ptr, u64 old_size, u64 new_size, u64 alignment);
struct Cia_Arena typedef Cia_Arena;
struct Cia_Arena {