summaryrefslogtreecommitdiff
path: root/signal/signal.c
diff options
context:
space:
mode:
Diffstat (limited to 'signal/signal.c')
-rw-r--r--signal/signal.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/signal/signal.c b/signal/signal.c
index a249e74006..731d42c8b0 100644
--- a/signal/signal.c
+++ b/signal/signal.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
@@ -22,9 +22,7 @@
/* Set the handler for the signal SIG to HANDLER,
returning the old handler, or SIG_ERR on error. */
__sighandler_t
-signal (sig, handler)
- int sig;
- __sighandler_t handler;
+signal (int sig, __sighandler_t handler)
{
__set_errno (ENOSYS);
return SIG_ERR;