diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/stdlib/malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c index b6e4ada312..4e33d33b1b 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.108 2008/11/13 07:38:45 otto Exp $ */ | 1 | /* $OpenBSD: malloc.c,v 1.109 2008/11/20 09:01:24 otto Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> | 3 | * Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> |
4 | * | 4 | * |
@@ -70,7 +70,7 @@ | |||
70 | * This is the extra headroom we allow. Set to zero to be the most | 70 | * This is the extra headroom we allow. Set to zero to be the most |
71 | * strict. | 71 | * strict. |
72 | */ | 72 | */ |
73 | #define MALLOC_LEEWAY 16 | 73 | #define MALLOC_LEEWAY 0 |
74 | 74 | ||
75 | #define PAGEROUND(x) (((x) + (MALLOC_PAGEMASK)) & ~MALLOC_PAGEMASK) | 75 | #define PAGEROUND(x) (((x) + (MALLOC_PAGEMASK)) & ~MALLOC_PAGEMASK) |
76 | 76 | ||