diff options
| -rw-r--r-- | include/signal.h | 1 | ||||
| -rw-r--r-- | libc/signal/sigpause.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/include/signal.h b/include/signal.h index f72707950..31ebc133c 100644 --- a/include/signal.h +++ b/include/signal.h @@ -184,7 +184,6 @@ libc_hidden_proto(__sigpause) /* Set the mask of blocked signals to MASK, wait for a signal to arrive, and then restore the mask. */ extern int sigpause (int __mask) __THROW __attribute_deprecated__; -libc_hidden_proto(sigpause) # define sigpause(mask) __sigpause ((mask), 0) #else # ifdef __USE_XOPEN diff --git a/libc/signal/sigpause.c b/libc/signal/sigpause.c index 1f78e9422..8c4e83e76 100644 --- a/libc/signal/sigpause.c +++ b/libc/signal/sigpause.c @@ -76,4 +76,3 @@ int sigpause (int mask) return __sigpause (mask, 0); #endif } -libc_hidden_def(sigpause) |
