From: Peter S. Mazinger Date: Tue, 8 Nov 2005 18:26:27 +0000 (-0000) Subject: Correct a problem introduced by porting the glibc header X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e1533f29c6caa2a20293106f7ef108fac5e23af9;p=uclinux-h8%2FuClibc.git Correct a problem introduced by porting the glibc header --- 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__