diff options
Diffstat (limited to 'sysdeps/mach/hurd/sigprocmask.c')
-rw-r--r-- | sysdeps/mach/hurd/sigprocmask.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sysdeps/mach/hurd/sigprocmask.c b/sysdeps/mach/hurd/sigprocmask.c index 2e496dc63b..a1e8f444f8 100644 --- a/sysdeps/mach/hurd/sigprocmask.c +++ b/sysdeps/mach/hurd/sigprocmask.c @@ -25,10 +25,7 @@ according to HOW, which may be SIG_BLOCK, SIG_UNBLOCK or SIG_SETMASK. If OSET is not NULL, store the old set of blocked signals in *OSET. */ int -__sigprocmask (how, set, oset) - int how; - const sigset_t *set; - sigset_t *oset; +__sigprocmask (int how, const sigset_t *set, sigset_t *oset) { struct hurd_sigstate *ss; sigset_t old, new; |