master
1#include <stdlib.h>
2
3void *realloc(void *p, size_t n)
4{
5	return __libc_realloc(p, n);
6}