diff options
author | Craig Rodrigues <rodrigc@FreeBSD.org> | 2015-09-20 20:24:28 +0000 |
---|---|---|
committer | Craig Rodrigues <rodrigc@FreeBSD.org> | 2015-09-20 20:24:28 +0000 |
commit | f98e0c9dd831748338a7856c0e98678ea8181d19 (patch) | |
tree | be0fcdcc2e09e35233a813ebe7bb4842caab3e62 /lib/libc/stdlib/exit.c | |
parent | 55b6b759c89e6a44468ff442f11bc2a4a1775699 (diff) |
Notes
Diffstat (limited to 'lib/libc/stdlib/exit.c')
-rw-r--r-- | lib/libc/stdlib/exit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/stdlib/exit.c b/lib/libc/stdlib/exit.c index 145eb9d7c7cb..a656e04586c0 100644 --- a/lib/libc/stdlib/exit.c +++ b/lib/libc/stdlib/exit.c @@ -56,8 +56,7 @@ int __isthreaded = 0; * Exit, flushing stdio buffers if necessary. */ void -exit(status) - int status; +exit(int status) { /* Ensure that the auto-initialization routine is linked in: */ extern int _thread_autoinit_dummy_decl; |