From e1533f29c6caa2a20293106f7ef108fac5e23af9 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 8 Nov 2005 18:26:27 +0000 Subject: Correct a problem introduced by porting the glibc header --- include/signal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/signal.h b/include/signal.h index 1be2dbb84..986a9f79f 100644 --- a/include/signal.h +++ b/include/signal.h @@ -155,8 +155,8 @@ extern int __sigpause (int __sig_or_mask, int __is_sig); #ifdef __FAVOR_BSD /* Set the mask of blocked signals to MASK, wait for a signal to arrive, and then restore the mask. */ -# define sigpause(mask) __sigpause ((mask), 0) extern int sigpause (int __mask) __THROW __attribute_deprecated__; +# define sigpause(mask) __sigpause ((mask), 0) #else # ifdef __USE_XOPEN # ifdef __GNUC__ -- cgit v1.2.3