about summary refs log tree commit diff
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
parentb6e59cd925cbe6c0f23cf46828d47e6e7edd17c9 (diff)
downloadmusl-7e399fabd3db2c528b5982803eeba2841f547695.tar.gz
musl-7e399fabd3db2c528b5982803eeba2841f547695.tar.xz
musl-7e399fabd3db2c528b5982803eeba2841f547695.zip
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;