diff options
author | trasz <trasz@FreeBSD.org> | 2014-12-13 21:13:28 +0000 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2014-12-13 21:13:28 +0000 |
commit | b7cdcd3176fde58312bfad50b829a30775b3ba39 (patch) | |
tree | e867d4185e9e7765235a9ef2b3e30e86cfd71100 /lib/libc/stdlib | |
parent | 6f2b57128c8cdb88f2777eed3c99e866c3c53e04 (diff) | |
download | FreeBSD-src-b7cdcd3176fde58312bfad50b829a30775b3ba39.zip FreeBSD-src-b7cdcd3176fde58312bfad50b829a30775b3ba39.tar.gz |
Fix quick_exit(3) manual page to match reality - the status was missing.
MFC after: 1 month
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/quick_exit.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/quick_exit.3 b/lib/libc/stdlib/quick_exit.3 index f2ea379..7bbd2f3 100644 --- a/lib/libc/stdlib/quick_exit.3 +++ b/lib/libc/stdlib/quick_exit.3 @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd December 7, 2011 +.Dd December 13, 2014 .Dt QUICK_EXIT 3 .Os .Sh NAME @@ -35,7 +35,7 @@ .Sh SYNOPSIS .In stdlib.h .Ft _Noreturn void -.Fn quick_exit "void" +.Fn quick_exit "int status" .Sh DESCRIPTION The .Fn quick_exit |