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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c
index 4e33d33b1b..0f1f088b44 100644
--- a/src/lib/libc/stdlib/malloc.c
+++ b/src/lib/libc/stdlib/malloc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: malloc.c,v 1.109 2008/11/20 09:01:24 otto Exp $ */ 1/* $OpenBSD: malloc.c,v 1.110 2008/11/20 09:05:15 otto Exp $ */
2/* 2/*
3 * Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> 3 * Copyright (c) 2008 Otto Moerbeek <otto@drijf.net>
4 * 4 *
@@ -154,7 +154,7 @@ static int malloc_active; /* status of malloc */
154static int malloc_freeprot; /* mprotect free pages PROT_NONE? */ 154static int malloc_freeprot; /* mprotect free pages PROT_NONE? */
155static int malloc_hint; /* call madvice on free pages? */ 155static int malloc_hint; /* call madvice on free pages? */
156static int malloc_junk; /* junk fill? */ 156static int malloc_junk; /* junk fill? */
157static int malloc_move; /* move allocations to end of page? */ 157static int malloc_move = 1; /* move allocations to end of page? */
158static int malloc_realloc; /* always realloc? */ 158static int malloc_realloc; /* always realloc? */
159static int malloc_xmalloc; /* xmalloc behaviour? */ 159static int malloc_xmalloc; /* xmalloc behaviour? */
160static int malloc_zero; /* zero fill? */ 160static int malloc_zero; /* zero fill? */