summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/malloc.c
diff options
context:
space:
mode:
authortholo <tholo@openbsd.org>1996-09-16 05:43:38 +0000
committertholo <tholo@openbsd.org>1996-09-16 05:43:38 +0000
commita5cc1b672a2184dd57aec2f1912b3aec8a90e45e (patch)
tree325dc1480af8393525d60d58066f26881c633826 /lib/libc/stdlib/malloc.c
parentjoy[01] is at major 26 (diff)
downloadwireguard-openbsd-a5cc1b672a2184dd57aec2f1912b3aec8a90e45e.tar.xz
wireguard-openbsd-a5cc1b672a2184dd57aec2f1912b3aec8a90e45e.zip
Avoid pulling in stdio
Diffstat (limited to 'lib/libc/stdlib/malloc.c')
-rw-r--r--lib/libc/stdlib/malloc.c6
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 */