From 55a1c9c89028f8930e5f65fe5484fa7ba0e18853 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 6 Sep 2018 16:32:49 -0400 Subject: move declarations for malloc internals to malloc_impl.h --- src/malloc/lite_malloc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/malloc/lite_malloc.c') 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 #include #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; -- cgit v1.2.1