diff options
Diffstat (limited to 'posix/_exit.c')
-rw-r--r-- | posix/_exit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/posix/_exit.c b/posix/_exit.c index f4d76a10d0..c8cf1ef7b0 100644 --- a/posix/_exit.c +++ b/posix/_exit.c @@ -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 (); |