diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-29 15:46:50 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-29 18:23:10 +0100 |
commit | fba639dcdcc2f3fede71e8bcd1a1a525a7f57d61 (patch) | |
tree | 9da29168d05b6b90d984fb19e33c0e2b7f906058 /include/signal.h | |
parent | 29962e14a1144ec4f9cfac8ab8a51af2b5692317 (diff) |
handle signal-OBXSI.SUSv4.syms
A couple of sig functions are obsolete in SUSv4.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'include/signal.h')
-rw-r--r-- | include/signal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/signal.h b/include/signal.h index 37ed29780..dc8679477 100644 --- a/include/signal.h +++ b/include/signal.h @@ -168,7 +168,7 @@ extern int gsignal (int __sig) __THROW; extern void psignal (int __sig, __const char *__s); #endif /* Use misc. */ - +#ifdef __UCLIBC_SUSV4_LEGACY__ /* The `sigpause' function has two different interfaces. The original BSD definition defines the argument as a mask of the signal, while the more modern interface in X/Open defines it as the signal @@ -191,7 +191,7 @@ extern int sigpause (int __mask) __THROW __attribute_deprecated__; # define sigpause(sig) __sigpause ((sig), 1) # endif #endif - +#endif /* __UCLIBC_SUSV4_LEGACY__ */ #ifdef __USE_BSD /* None of the following functions should be used anymore. They are here |