diff options
Diffstat (limited to 'gnu/lib/libmalloc/combined.c')
-rw-r--r-- | gnu/lib/libmalloc/combined.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/lib/libmalloc/combined.c b/gnu/lib/libmalloc/combined.c new file mode 100644 index 00000000000..bfb7880d6d9 --- /dev/null +++ b/gnu/lib/libmalloc/combined.c @@ -0,0 +1,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" |