10 lines
146 B
C
10 lines
146 B
C
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
void * wilderness;
|
|
} HeapArena;
|
|
|
|
void init_allocator();
|
|
void* malloc (size_t size);
|