X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmalloc%2Flite_malloc.c;h=050d84f648bcc690f97d704ce7232089b9a256f0;hb=2412638bb39eb799b2600393bbd71cca8ae96bb2;hp=96c4feacddc4d253c72827a4e4461f939e5f2d4b;hpb=618b18c78e33acfe54a4434e91aa57b8e171df89;p=musl diff --git a/src/malloc/lite_malloc.c b/src/malloc/lite_malloc.c index 96c4feac..050d84f6 100644 --- a/src/malloc/lite_malloc.c +++ b/src/malloc/lite_malloc.c @@ -2,12 +2,11 @@ #include #include #include -#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;