summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-19 04:00:48 +0200
committerAustin Foxley <austinf@cetoncorp.com>2009-09-18 22:05:43 -0700
commit09cd1eed760f95300dd8cef86de4c4c4bc393e24 (patch)
treea28d1526cdf413051b7f2cba66d9dfb00cf95a37
parent397e6889b734ac2508477752cf2a1acdf9d66fd4 (diff)
downloaduClibc-alpine-09cd1eed760f95300dd8cef86de4c4c4bc393e24.tar.bz2
uClibc-alpine-09cd1eed760f95300dd8cef86de4c4c4bc393e24.tar.xz
sigpause: remove libc_hidden_proto/def
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
-rw-r--r--include/signal.h1
-rw-r--r--libc/signal/sigpause.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/include/signal.h b/include/signal.h
index f72707950..31ebc133c 100644
--- a/include/signal.h
+++ b/include/signal.h
@@ -184,7 +184,6 @@ libc_hidden_proto(__sigpause)
/* Set the mask of blocked signals to MASK,
wait for a signal to arrive, and then restore the mask. */
extern int sigpause (int __mask) __THROW __attribute_deprecated__;
-libc_hidden_proto(sigpause)
# define sigpause(mask) __sigpause ((mask), 0)
#else
# ifdef __USE_XOPEN
diff --git a/libc/signal/sigpause.c b/libc/signal/sigpause.c
index 1f78e9422..8c4e83e76 100644
--- a/libc/signal/sigpause.c
+++ b/libc/signal/sigpause.c
@@ -76,4 +76,3 @@ int sigpause (int mask)
return __sigpause (mask, 0);
#endif
}
-libc_hidden_def(sigpause)