summaryrefslogtreecommitdiff
path: root/src/malloc/malloc_impl.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2020-06-03 19:17:19 -0400
committerRich Felker <dalias@aerifal.cx>2020-06-03 19:17:19 -0400
commiteaa0f2496700c238e7e3c112d36445f3aee06ff1 (patch)
tree41979600733c58af880b832bed70bc51814b2bc9 /src/malloc/malloc_impl.h
parente07138b880dcc72d3f1b3a2d2c1af75c2484c8d7 (diff)
downloadmusl-eaa0f2496700c238e7e3c112d36445f3aee06ff1.tar.gz
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.
Diffstat (limited to 'src/malloc/malloc_impl.h')
-rw-r--r--src/malloc/malloc_impl.h2
1 files changed, 0 insertions, 2 deletions
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 <sys/mman.h>
#include "dynlink.h"
-hidden void *__expand_heap(size_t *);
-
struct chunk {
size_t psize, csize;
struct chunk *next, *prev;