From cb97aadebfeba7f5e8f1b85beee5ab10e88c2990 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 20 Nov 2008 22:11:44 +0000 Subject: Last portion of libc_hidden_proto removal. Appears to build fine (several .configs tried) --- libc/signal/sigwait.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libc/signal/sigwait.c') diff --git a/libc/signal/sigwait.c b/libc/signal/sigwait.c index 117c1c4b3..c902ee888 100644 --- a/libc/signal/sigwait.c +++ b/libc/signal/sigwait.c @@ -23,7 +23,7 @@ #include #if defined __UCLIBC_HAS_REALTIME__ -libc_hidden_proto(sigwaitinfo) +/* libc_hidden_proto(sigwaitinfo) */ int __sigwait (const sigset_t *set, int *sig) attribute_hidden; int __sigwait (const sigset_t *set, int *sig) @@ -37,9 +37,9 @@ int __sigwait (const sigset_t *set, int *sig) } #else /* __UCLIBC_HAS_REALTIME__ */ /* variant without REALTIME extensions */ -libc_hidden_proto(sigfillset) +/* libc_hidden_proto(sigfillset) */ /* libc_hidden_proto(sigaction) */ -libc_hidden_proto(sigsuspend) +/* libc_hidden_proto(sigsuspend) */ static int was_sig; /* obviously not thread-safe */ static void ignore_signal(int sig) @@ -96,6 +96,6 @@ int __sigwait (const sigset_t *set, int *sig) return was_sig == -1 ? -1 : 0; } #endif /* __UCLIBC_HAS_REALTIME__ */ -libc_hidden_proto(sigwait) +/* libc_hidden_proto(sigwait) */ weak_alias(__sigwait,sigwait) libc_hidden_def(sigwait) -- cgit v1.2.3