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/sigpause.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libc/signal/sigpause.c') diff --git a/libc/signal/sigpause.c b/libc/signal/sigpause.c index 952350b6a..195e88efc 100644 --- a/libc/signal/sigpause.c +++ b/libc/signal/sigpause.c @@ -25,14 +25,14 @@ #include /* For NULL. */ /* libc_hidden_proto(sigprocmask) */ -libc_hidden_proto(sigdelset) -libc_hidden_proto(sigsuspend) +/* libc_hidden_proto(sigdelset) */ +/* libc_hidden_proto(sigsuspend) */ #include "sigset-cvt-mask.h" /* Set the mask of blocked signals to MASK, wait for a signal to arrive, and then restore the mask. */ -libc_hidden_proto(__sigpause) +/* libc_hidden_proto(__sigpause) */ int __sigpause (int sig_or_mask, int is_sig) { sigset_t set; @@ -57,7 +57,7 @@ libc_hidden_def(__sigpause) /* We have to provide a default version of this function since the standards demand it. The version which is a bit more reasonable is the BSD version. So make this the default. */ -libc_hidden_proto(sigpause) +/* libc_hidden_proto(sigpause) */ int sigpause (int mask) { return __sigpause (mask, 0); -- cgit v1.2.3