13 lines
379 B
C
13 lines
379 B
C
/*
|
|
* 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 1993/10/26 06:52:17 cgd Exp $
|
|
*/
|
|
|
|
#include "malloc.c"
|
|
#include "free.c"
|
|
#include "realloc.c"
|