From: tytso Date: Fri, 10 Dec 1993 13:51:19 +0000 (+0000) Subject: Initial revision X-Git-Tag: release77~32 X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/commitdiff_plain/76a3c561f1489aeace052c66122f4fb2b6fa6509?hp=e448f08dfc620178994c0fe53e135c874eb54f67 Initial revision --- diff --git a/server/malloc.h b/server/malloc.h new file mode 100644 index 00000000..b5d2b4b9 --- /dev/null +++ b/server/malloc.h @@ -0,0 +1,18 @@ +/* + * $Source$ + * $Author$ + * $Header$ + * + * Copyright (C) 1993 by the Massachusetts Institute of Technology + * + * This is a stub routine that defines the malloc, realloc, free, etc. + * It also #includes string.h and strings.h, so that the debugging + * malloc can redefine them if necessary. + */ + +extern char *malloc(); +extern char *realloc(); +extern void free(); + +#include +#include