4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-24 07:57:22 +08:00

8 lines
94 B
C
Raw Normal View History

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