diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-19 03:41:14 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-19 03:41:14 +0200 |
commit | d4b4c5a0633be8be45583b2fd2238514a52e4202 (patch) | |
tree | 34cc429cd222dd7ca2f16a9602328abe24c11801 /include | |
parent | 2528a3f6c2fa13d55eb1d65be9978e59cc39df8b (diff) |
sigwait: remove __sigwait and __GI_sigwait symbols - they are unused
sigwait is not called from any uclibc function, so "hidden symbol"
trick is not needed on it. __sigwait also is never used,
and it's not clear why it even existed.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/signal.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/signal.h b/include/signal.h index d10463068..f72707950 100644 --- a/include/signal.h +++ b/include/signal.h @@ -303,7 +303,6 @@ extern int sigpending (sigset_t *__set) __THROW __nonnull ((1)); __THROW. */ extern int sigwait (__const sigset_t *__restrict __set, int *__restrict __sig) __nonnull ((1, 2)); -libc_hidden_proto(sigwait) # if defined __USE_POSIX199309 && defined __UCLIBC_HAS_REALTIME__ /* Select any of pending signals from SET and place information in INFO. |