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