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