diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-29 00:50:10 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-29 00:50:10 +0000 |
commit | d24608f995e83aa4ac5557cd1a084cac55a71a3c (patch) | |
tree | bd85ca3d38df362786a2ff156f8efd0c8d628f74 /libc/unistd | |
parent | 57eac0f84b7fe02eee8607eff91051eeef6e74ba (diff) |
Hiding again
Diffstat (limited to 'libc/unistd')
-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) |