CustomHeapManager/main.c
2024-02-07 23:15:44 -08:00

15 lines
128 B
C

#include <stddef.h>
void* malloc(unsigned long size)
{
return NULL;
}
void free(void* ptr)
{
}
int main(void)
{
return 0;
}