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

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);
}