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.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/internal/malloc_impl.h b/src/internal/malloc_impl.h
index 88b4f670..e97337b3 100644
--- a/src/internal/malloc_impl.h
+++ b/src/internal/malloc_impl.h
@@ -2,11 +2,7 @@
#define MALLOC_IMPL_H
#include "libc.h"
-
-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);
+#include <sys/mman.h>
void *__expand_heap(size_t *);