add further ioctl time64 fallback conversions
[musl] / src / malloc / lite_malloc.c
index 96c4fea..050d84f 100644 (file)
@@ -2,12 +2,11 @@
 #include <stdint.h>
 #include <limits.h>
 #include <errno.h>
-#include "libc.h"
+#include "lock.h"
+#include "malloc_impl.h"
 
 #define ALIGN 16
 
-void *__expand_heap(size_t *);
-
 static void *__simple_malloc(size_t n)
 {
        static char *cur, *end;