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