4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-22 15:07:43 +08:00
Mike Frysinger 8c383e9ae7 newlib: xstormy16: break up mallocr stubs
Move the multiplex logic out of the build and into source files to
make the build rules a lot simpler.
2022-03-13 17:12:03 -04:00

8 lines
108 B
C

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