arena allocators are fully implemented

This commit is contained in:
2025-12-06 14:19:53 +01:00
parent b912759050
commit d6ad1c7602
5 changed files with 92 additions and 10 deletions
+1
View File
@@ -9,4 +9,5 @@ Test(std_allocator, test) {
void *new_ptr = allocator_resize(this, ptr, 1024*1024*500);
cr_assert(new_ptr != ((void *)0), "non null from realloc");
cr_assert(new_ptr != ptr, "realloc is not the same ptr as malloc");
free(new_ptr);
}