From eaa0f2496700c238e7e3c112d36445f3aee06ff1 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 3 Jun 2020 19:17:19 -0400 Subject: move __expand_heap into malloc.c this function is no longer used elsewhere, and moving it reduces the number of source files specific to the malloc implementation. --- src/malloc/malloc_impl.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/malloc/malloc_impl.h') diff --git a/src/malloc/malloc_impl.h b/src/malloc/malloc_impl.h index 6a92c1c6..e1cf4774 100644 --- a/src/malloc/malloc_impl.h +++ b/src/malloc/malloc_impl.h @@ -4,8 +4,6 @@ #include #include "dynlink.h" -hidden void *__expand_heap(size_t *); - struct chunk { size_t psize, csize; struct chunk *next, *prev; -- cgit v1.2.1