Files
allocators/tests/allocator.c
T

12 lines
233 B
C
Raw Normal View History

2026-08-07 18:33:50 -05:00
extern int test_libc_allocator();
extern int test_platform_allocator();
extern int test_arena_allocator();
int main(void) {
return !(
2026-08-12 19:47:59 -05:00
test_libc_allocator() &&
2026-08-07 18:33:50 -05:00
test_platform_allocator() &&
test_arena_allocator()
);
}