summaryrefslogtreecommitdiff
path: root/posix/_exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/_exit.c')
-rw-r--r--posix/_exit.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/posix/_exit.c b/posix/_exit.c
index f4d76a10d0..e79916f677 100644
--- a/posix/_exit.c
+++ b/posix/_exit.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,8 +22,7 @@
terminate program execution, using the low-order 8 bits of the
given integer as status. */
void
-_exit (status)
- int status;
+_exit (int status)
{
status &= 0xff;
abort ();