summaryrefslogtreecommitdiff
path: root/src/internal/libc.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/libc.h
parentb6e59cd925cbe6c0f23cf46828d47e6e7edd17c9 (diff)
downloadmusl-7e399fabd3db2c528b5982803eeba2841f547695.tar.gz
apply hidden visibility to various remaining internal interfaces
Diffstat (limited to 'src/internal/libc.h')
-rw-r--r--src/internal/libc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/internal/libc.h b/src/internal/libc.h
index 23988d92..52e2d80f 100644
--- a/src/internal/libc.h
+++ b/src/internal/libc.h
@@ -36,9 +36,9 @@ struct __libc {
extern hidden struct __libc __libc;
#define libc __libc
-void __init_libc(char **, char *);
-void __init_tls(size_t *);
-void __libc_start_init(void);
+hidden void __init_libc(char **, char *);
+hidden void __init_tls(size_t *);
+hidden void __libc_start_init(void);
extern hidden size_t __hwcap;
extern hidden size_t __sysinfo;
@@ -54,8 +54,8 @@ hidden void __unlockfile(FILE *);
#define LOCK(x) __lock(x)
#define UNLOCK(x) __unlock(x)
-void __synccall(void (*)(void *), void *);
-int __setxid(int, int, int, int);
+hidden void __synccall(void (*)(void *), void *);
+hidden int __setxid(int, int, int, int);
#undef LFS64_2
#define LFS64_2(x, y) weak_alias(x, y)