aboutsummaryrefslogtreecommitdiff
path: root/src/internal/malloc_impl.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-11 12:32:46 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-12 14:34:34 -0400
commit7e399fabd3db2c528b5982803eeba2841f547695 (patch)
tree7dd5b5bf30e99dd0f622203017bc9364e8a74aab /src/internal/malloc_impl.h
parentapply hidden visibility to sigreturn code fragments (diff)
downloadgrovel-7e399fabd3db2c528b5982803eeba2841f547695.tar.gz
grovel-7e399fabd3db2c528b5982803eeba2841f547695.tar.xz
apply hidden visibility to various remaining internal interfaces
Diffstat (limited to 'src/internal/malloc_impl.h')
-rw-r--r--src/internal/malloc_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/internal/malloc_impl.h b/src/internal/malloc_impl.h
index e97337b3..b6eacd87 100644
--- a/src/internal/malloc_impl.h
+++ b/src/internal/malloc_impl.h
@@ -4,11 +4,11 @@
#include "libc.h"
#include <sys/mman.h>
-void *__expand_heap(size_t *);
+hidden void *__expand_heap(size_t *);
-void __malloc_donate(char *, char *);
+hidden void __malloc_donate(char *, char *);
-void *__memalign(size_t, size_t);
+hidden void *__memalign(size_t, size_t);
struct chunk {
size_t psize, csize;