summaryrefslogtreecommitdiff
path: root/src/internal/malloc_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/malloc_impl.h')
-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;