Retro68/gcc/newlib/libc/sys/linux/mallocr.c
2012-03-27 01:51:53 +02:00

8 lines
100 B
C

#include <stdlib.h>
void *
_malloc_r (struct _reent *ptr, size_t size)
{
return malloc (size);
}