1 /* 2 * this file (combined.c) is malloc.c, free.c, and realloc.c, combined into 3 * one file, because the malloc.o in libc defined malloc, realloc, and free, 4 * and libc sometimes invokes realloc, which can greatly confuse things 5 * in the linking process... 6 * 7 * $Id: combined.c,v 1.1 2016/01/13 21:56:38 christos Exp $ 8 */ 9 10 #include "malloc.c" 11 #include "free.c" 12 #include "realloc.c" 13