diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-13 01:00:55 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:22 +0200 |
commit | 3c3f899b6d2ff68d3d6f1ef8f752218d8dd594ea (patch) | |
tree | eb115b998c9cdedde6d56296bb17085f2ddfd2ed /libc/signal | |
parent | 5fce95b146d86e31977fcc62380b9fd32813561f (diff) |
remove unneeded hidden sigwaitinfo
use __sigwaitinfo in sigwait.c, since that is already hidden
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/signal')
-rw-r--r-- | libc/signal/sigwait.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/signal/sigwait.c b/libc/signal/sigwait.c index 8fd7ea81f..634a18dc5 100644 --- a/libc/signal/sigwait.c +++ b/libc/signal/sigwait.c @@ -96,7 +96,7 @@ int sigwait (const sigset_t *set, int *sig) int sigwait (const sigset_t *set, int *sig) { int ret = 1; - if ((ret = sigwaitinfo(set, NULL)) != -1) { + if ((ret = __sigwaitinfo(set, NULL)) != -1) { *sig = ret; return 0; } |