move declarations for malloc internals to malloc_impl.h
[musl] / src / malloc / lite_malloc.c
index 96c4fea..49157d3 100644 (file)
@@ -3,11 +3,10 @@
 #include <limits.h>
 #include <errno.h>
 #include "libc.h"
+#include "malloc_impl.h"
 
 #define ALIGN 16
 
-void *__expand_heap(size_t *);
-
 static void *__simple_malloc(size_t n)
 {
        static char *cur, *end;