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

8 lines
108 B
C
Raw Normal View History

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