compiler/malloc.h

8 lines
132 B
C

#pragma once
#include <stdint.h>
#define malloct(t) (malloc_class_arena((sizeof (t))))
void * malloc_class_arena(uint32_t size);