#include void *realloc(void *p, size_t n) { return __libc_realloc(p, n); } #ifdef TEST int main(void) { return 0; } #endif