diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-06 16:32:49 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:28 -0400 |
commit | 55a1c9c89028f8930e5f65fe5484fa7ba0e18853 (patch) | |
tree | 426ed3adf14fc0cac4e3748ff4ccdd65f65fe89d /src/malloc/lite_malloc.c | |
parent | 18bf0829a7545b14de3fe241a65298c5f36e8bbc (diff) | |
download | musl-55a1c9c89028f8930e5f65fe5484fa7ba0e18853.tar.gz musl-55a1c9c89028f8930e5f65fe5484fa7ba0e18853.tar.bz2 musl-55a1c9c89028f8930e5f65fe5484fa7ba0e18853.tar.xz musl-55a1c9c89028f8930e5f65fe5484fa7ba0e18853.zip |
move declarations for malloc internals to malloc_impl.h
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; |