summaryrefslogtreecommitdiff
path: root/include/signal.h
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-11-10 22:52:23 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-11-10 22:52:23 +0000
commite1d467b7f6d4dffd311c63f0bef4a70f3887feda (patch)
tree519448314dbf080a5544db1a3a2b10a3e09ec4b2 /include/signal.h
parent729bcb8c1c2a8626f6d8993a4b9db3714d84bc24 (diff)
Disable __xpg_sigpause until it is implemented (if at all) in uClibc
Diffstat (limited to 'include/signal.h')
-rw-r--r--include/signal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/signal.h b/include/signal.h
index 986a9f79f..e865218b0 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
-# ifdef __GNUC__
+# if 0 /* def __GNUC__ */
extern int sigpause (int __sig) __asm__ ("__xpg_sigpause");
# else
/* Remove a signal from the signal mask and suspend the process. */