Add arena_free()

This commit is contained in:
Ole Morud
2023-06-04 12:33:44 +02:00
parent 90f72e9593
commit 279618f52d
2 changed files with 9 additions and 0 deletions

View File

@@ -83,3 +83,11 @@ void arena_delete(arena_t* a)
arena_reset(a);
a->data = NULL;
}
// included for completeness
void arena_free(arena_t* a, void* p)
{
(void)p;
(void)a;
return;
}