summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/malloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/stdlib/malloc.c')
-rw-r--r--src/lib/libc/stdlib/malloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c
index 54a802b0c9..780980e7cb 100644
--- a/src/lib/libc/stdlib/malloc.c
+++ b/src/lib/libc/stdlib/malloc.c
@@ -8,7 +8,7 @@
8 */ 8 */
9 9
10#if defined(LIBC_SCCS) && !defined(lint) 10#if defined(LIBC_SCCS) && !defined(lint)
11static char rcsid[] = "$OpenBSD: malloc.c,v 1.11 1996/09/15 09:31:49 tholo Exp $"; 11static char rcsid[] = "$OpenBSD: malloc.c,v 1.12 1996/09/16 05:43:40 tholo Exp $";
12#endif /* LIBC_SCCS and not lint */ 12#endif /* LIBC_SCCS and not lint */
13 13
14/* 14/*
@@ -20,9 +20,9 @@ static char rcsid[] = "$OpenBSD: malloc.c,v 1.11 1996/09/15 09:31:49 tholo Exp $
20/* 20/*
21 * Defining MALLOC_STATS will enable you to call malloc_dump() and set 21 * Defining MALLOC_STATS will enable you to call malloc_dump() and set
22 * the [dD] options in the MALLOC_OPTIONS environment variable. 22 * the [dD] options in the MALLOC_OPTIONS environment variable.
23 * It has no run-time performance hit. 23 * It has no run-time performance hit, but does pull in stdio...
24 */ 24 */
25#define MALLOC_STATS 25#undef MALLOC_STATS
26 26
27#if defined(EXTRA_SANITY) && !defined(MALLOC_STATS) 27#if defined(EXTRA_SANITY) && !defined(MALLOC_STATS)
28# define MALLOC_STATS /* required for EXTRA_SANITY */ 28# define MALLOC_STATS /* required for EXTRA_SANITY */