realloc.c raw

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