xref: /netbsd-src/external/gpl2/libmalloc/lib/combined.c (revision d909946ca08dceb44d7d0f22ec9488679695d976)
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