X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=inline;f=src%2Finternal%2Fmalloc_impl.h;h=59785a7fe137bbe0736bbcfc7f541761f73ca9d7;hb=41b290ba397067a09525b6ac89b4040728349046;hp=40d1696047939c1b8443172e8bd5318427701535;hpb=55a1c9c89028f8930e5f65fe5484fa7ba0e18853;p=musl diff --git a/src/internal/malloc_impl.h b/src/internal/malloc_impl.h index 40d16960..59785a7f 100644 --- a/src/internal/malloc_impl.h +++ b/src/internal/malloc_impl.h @@ -1,16 +1,13 @@ #ifndef MALLOC_IMPL_H #define MALLOC_IMPL_H -#include "libc.h" +#include -void *__mmap(void *, size_t, int, int, int, off_t); -int __munmap(void *, size_t); -void *__mremap(void *, size_t, size_t, int, ...); -int __madvise(void *, size_t, int); +hidden void *__expand_heap(size_t *); -void *__expand_heap(size_t *); +hidden void __malloc_donate(char *, char *); -void __malloc_donate(char *, char *); +hidden void *__memalign(size_t, size_t); struct chunk { size_t psize, csize;