]>
git.bts.cx Git - benzene.git/blob - src_platform/playdate/bz/memory/arena.c
1 #include <bz/memory/arena_internal.h>
3 #include <playdate/entrypoint.h>
5 void *bzSystemAllocate(size_t size
) {
6 void *mem
= playdate
->system
->realloc(NULL
, size
);
7 bzAssertMessage(mem
!= NULL
, "Allocation failed");