summaryrefslogtreecommitdiffstats
path: root/libc/signal/sigpause.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/signal/sigpause.c')
-rw-r--r--libc/signal/sigpause.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/signal/sigpause.c b/libc/signal/sigpause.c
index ffb3595fb..8cf28ac6e 100644
--- a/libc/signal/sigpause.c
+++ b/libc/signal/sigpause.c
@@ -27,15 +27,15 @@
#include <sysdep-cancel.h>
#endif
-libc_hidden_proto(sigprocmask)
-libc_hidden_proto(sigdelset)
-libc_hidden_proto(sigsuspend)
+/* libc_hidden_proto(sigprocmask) */
+/* 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;
@@ -63,7 +63,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)
{
#ifdef __UCLIBC_HAS_THREADS_NATIVE__