musl-tcc/src/malloc/realloc.c

7 lines
88 B
C

#include <stdlib.h>
void *realloc(void *p, size_t n)
{
return __libc_realloc(p, n);
}