summaryrefslogtreecommitdiff
path: root/src/internal
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-06 16:32:49 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-12 14:34:28 -0400
commit55a1c9c89028f8930e5f65fe5484fa7ba0e18853 (patch)
tree426ed3adf14fc0cac4e3748ff4ccdd65f65fe89d /src/internal
parent18bf0829a7545b14de3fe241a65298c5f36e8bbc (diff)
downloadmusl-55a1c9c89028f8930e5f65fe5484fa7ba0e18853.tar.gz
move declarations for malloc internals to malloc_impl.h
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/malloc_impl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/internal/malloc_impl.h b/src/internal/malloc_impl.h
index 4355d84c..40d16960 100644
--- a/src/internal/malloc_impl.h
+++ b/src/internal/malloc_impl.h
@@ -8,6 +8,10 @@ int __munmap(void *, size_t);
void *__mremap(void *, size_t, size_t, int, ...);
int __madvise(void *, size_t, int);
+void *__expand_heap(size_t *);
+
+void __malloc_donate(char *, char *);
+
struct chunk {
size_t psize, csize;
struct chunk *next, *prev;