newlib-cygwin/newlib/libc/machine/xstormy16/mallocr.c

8 lines
94 B
C

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