summaryrefslogtreecommitdiffstats
path: root/libc
diff options
context:
space:
mode:
Diffstat (limited to 'libc')
-rw-r--r--libc/signal/sigwait.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/signal/sigwait.c b/libc/signal/sigwait.c
index a47c37ce2..2bb817000 100644
--- a/libc/signal/sigwait.c
+++ b/libc/signal/sigwait.c
@@ -72,8 +72,7 @@ else
return ret;
}
-int __sigwait (const sigset_t *set, int *sig) attribute_hidden;
-int __sigwait (const sigset_t *set, int *sig)
+int sigwait(const sigset_t *set, int *sig)
{
if(SINGLE_THREAD_P)
return do_sigwait(set, sig);
@@ -166,5 +165,3 @@ int sigwait (const sigset_t *set, int *sig)
}
# endif /* __UCLIBC_HAS_REALTIME__ */
#endif /* __UCLIBC_HAS_THREADS_NATIVE__ */
-weak_alias(__sigwait,sigwait)
-libc_hidden_def(sigwait)