diff options
Diffstat (limited to 'src/malloc/lite_malloc.c')
-rw-r--r-- | src/malloc/lite_malloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/malloc/lite_malloc.c b/src/malloc/lite_malloc.c index 96c4feac..49157d36 100644 --- a/src/malloc/lite_malloc.c +++ b/src/malloc/lite_malloc.c @@ -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; |