svn commit: r275752 - head/lib/libc/stdlib

Edward Tomasz Napierala trasz at FreeBSD.org
Sat Dec 13 21:13:29 UTC 2014


Author: trasz
Date: Sat Dec 13 21:13:28 2014
New Revision: 275752
URL: https://svnweb.freebsd.org/changeset/base/275752

Log:
  Fix quick_exit(3) manual page to match reality - the status was missing.
  
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/lib/libc/stdlib/quick_exit.3

Modified: head/lib/libc/stdlib/quick_exit.3
==============================================================================
--- head/lib/libc/stdlib/quick_exit.3	Sat Dec 13 21:00:10 2014	(r275751)
+++ head/lib/libc/stdlib/quick_exit.3	Sat Dec 13 21:13:28 2014	(r275752)
@@ -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


More information about the svn-src-head mailing list