summaryrefslogtreecommitdiff
path: root/signal/sigprocmask.c
diff options
context:
space:
mode:
Diffstat (limited to 'signal/sigprocmask.c')
-rw-r--r--signal/sigprocmask.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/signal/sigprocmask.c b/signal/sigprocmask.c
index 33fb241ea5..2ec23864b8 100644
--- a/signal/sigprocmask.c
+++ b/signal/sigprocmask.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -23,10 +23,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)
{
switch (how)
{