CustomHeapManager/main.c

15 lines
128 B
C
Raw Normal View History

2024-02-07 23:15:44 -08:00
#include <stddef.h>
void* malloc(unsigned long size)
{
return NULL;
}
void free(void* ptr)
{
}
int main(void)
{
return 0;
}