Files
allocators/tests/allocator.c
T
2026-08-07 18:33:50 -05:00

12 lines
234 B
C

extern int test_libc_allocator();
extern int test_platform_allocator();
extern int test_arena_allocator();
int main(void) {
return !(
test_libc_allocator() &&
test_platform_allocator() &&
test_arena_allocator()
);
}