diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-09-16 05:43:41 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-09-16 05:43:41 +0000 |
commit | f929de3d9b768f2bb0272124885f8a9860781208 (patch) | |
tree | cbbc8c3021290e73a7b91183af12830fb5a3a5c0 /lib/libc/stdlib | |
parent | acffe15bb87bda932379dba7c5f7d408f43debbf (diff) |
Avoid pulling in stdio
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/malloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 54a802b0c95..780980e7cb3 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -8,7 +8,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: malloc.c,v 1.11 1996/09/15 09:31:49 tholo Exp $"; +static char rcsid[] = "$OpenBSD: malloc.c,v 1.12 1996/09/16 05:43:40 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -20,9 +20,9 @@ static char rcsid[] = "$OpenBSD: malloc.c,v 1.11 1996/09/15 09:31:49 tholo Exp $ /* * Defining MALLOC_STATS will enable you to call malloc_dump() and set * the [dD] options in the MALLOC_OPTIONS environment variable. - * It has no run-time performance hit. + * It has no run-time performance hit, but does pull in stdio... */ -#define MALLOC_STATS +#undef MALLOC_STATS #if defined(EXTRA_SANITY) && !defined(MALLOC_STATS) # define MALLOC_STATS /* required for EXTRA_SANITY */ |