From 76a3c561f1489aeace052c66122f4fb2b6fa6509 Mon Sep 17 00:00:00 2001 From: tytso Date: Fri, 10 Dec 1993 13:51:19 +0000 Subject: [PATCH] Initial revision --- server/malloc.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 server/malloc.h 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 -- 2.45.2