summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-11-08 18:26:27 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-11-08 18:26:27 +0000
commite1533f29c6caa2a20293106f7ef108fac5e23af9 (patch)
tree96d6dff6b61d88646434b5e193092f1012d3d44a
parent2115156d41d5d490023a98ec63970068e23a81ae (diff)
Correct a problem introduced by porting the glibc header
-rw-r--r--include/signal.h2
1 files changed, 1 insertions, 1 deletions
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__