diff options
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv')
-rw-r--r-- | libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c b/libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c index 4342cedf1..c6ea739d3 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c @@ -68,8 +68,10 @@ do_sigwaitinfo (const sigset_t *set, siginfo_t *info) /* Return any pending signal or wait for one for the given time. */ -int attribute_hidden -__sigwaitinfo (const sigset_t *set, siginfo_t *info) +int +__sigwaitinfo (set, info) + const sigset_t *set; + siginfo_t *info; { if (SINGLE_THREAD_P) return do_sigwaitinfo (set, info); |