From 55a1c9c89028f8930e5f65fe5484fa7ba0e18853 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 6 Sep 2018 16:32:49 -0400 Subject: move declarations for malloc internals to malloc_impl.h --- src/malloc/expand_heap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/malloc/expand_heap.c') diff --git a/src/malloc/expand_heap.c b/src/malloc/expand_heap.c index d8c0be74..e6a3d7a0 100644 --- a/src/malloc/expand_heap.c +++ b/src/malloc/expand_heap.c @@ -4,6 +4,7 @@ #include #include "libc.h" #include "syscall.h" +#include "malloc_impl.h" /* This function returns true if the interval [old,new] * intersects the 'len'-sized interval below &libc.auxv @@ -27,8 +28,6 @@ static int traverses_stack_p(uintptr_t old, uintptr_t new) return 0; } -void *__mmap(void *, size_t, int, int, int, off_t); - /* Expand the heap in-place if brk can be used, or otherwise via mmap, * using an exponential lower bound on growth by mmap to make * fragmentation asymptotically irrelevant. The size argument is both -- cgit v1.2.1