diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-11-10 23:35:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-11-10 23:35:37 +0000 |
commit | 1664f73efa9499cca3c3287cf5b7888fde8b832e (patch) | |
tree | ea239801dfcfcffaa68a875c199626c199b8a878 /include | |
parent | e1d467b7f6d4dffd311c63f0bef4a70f3887feda (diff) |
Lets not just paper over this. Add implementation of __xpg_sigpause()
Diffstat (limited to 'include')
-rw-r--r-- | include/signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/signal.h b/include/signal.h index e865218b0..986a9f79f 100644 --- a/include/signal.h +++ b/include/signal.h @@ -159,7 +159,7 @@ extern int sigpause (int __mask) __THROW __attribute_deprecated__; # define sigpause(mask) __sigpause ((mask), 0) #else # ifdef __USE_XOPEN -# if 0 /* def __GNUC__ */ +# ifdef __GNUC__ extern int sigpause (int __sig) __asm__ ("__xpg_sigpause"); # else /* Remove a signal from the signal mask and suspend the process. */ |