realloc.c 88 B

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