diff options
Diffstat (limited to 'libc/unistd/sysconf.c')
-rw-r--r-- | libc/unistd/sysconf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libc/unistd/sysconf.c b/libc/unistd/sysconf.c index 4c51c0c2b..2346ad831 100644 --- a/libc/unistd/sysconf.c +++ b/libc/unistd/sysconf.c @@ -70,7 +70,7 @@ #endif /* _UCLIBC_GENERATE_SYSCONF_ARCH */ /* Get the value of the system variable NAME. */ -long int __sysconf(int name) +long int attribute_hidden __sysconf(int name) { switch (name) { @@ -882,5 +882,4 @@ long int __sysconf(int name) #endif } } -weak_alias(__sysconf, sysconf); - +strong_alias(__sysconf,sysconf) |