diff options
Diffstat (limited to 'src/lib/libc/stdlib/abort.3')
-rw-r--r-- | src/lib/libc/stdlib/abort.3 | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/src/lib/libc/stdlib/abort.3 b/src/lib/libc/stdlib/abort.3 index ab57327585..d411b859eb 100644 --- a/src/lib/libc/stdlib/abort.3 +++ b/src/lib/libc/stdlib/abort.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)abort.3 6.7 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: abort.3,v 1.7 2003/06/02 20:18:37 millert Exp $ |
37 | .\" $Id: abort.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt ABORT 3 | 35 | .Dt ABORT 3 |
@@ -49,23 +44,20 @@ | |||
49 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
50 | The | 45 | The |
51 | .Fn abort | 46 | .Fn abort |
52 | function causes abnormal program termination to occur, unless the | 47 | function causes abnormal program termination to occur, unless the signal |
53 | signal | ||
54 | .Dv SIGABRT | 48 | .Dv SIGABRT |
55 | is being caught and the signal handler does not return. | 49 | is being caught and the signal handler does not return. |
56 | .Pp | 50 | .Pp |
57 | No open streams are closed or flushed. | 51 | Any open streams are flushed and closed. |
58 | .Sh RETURN VALUES | 52 | .Sh RETURN VALUES |
59 | The | 53 | The |
60 | .Nm abort | 54 | .Fn abort |
61 | function | 55 | function never returns. |
62 | never returns. | ||
63 | .Sh SEE ALSO | 56 | .Sh SEE ALSO |
64 | .Xr sigaction 2 , | 57 | .Xr sigaction 2 , |
65 | .Xr exit 2 | 58 | .Xr exit 3 |
66 | .Sh STANDARDS | 59 | .Sh STANDARDS |
67 | The | 60 | The |
68 | .Fn abort | 61 | .Fn abort |
69 | function | 62 | function conforms to |
70 | conforms to | 63 | .St -p1003.1-90 . |
71 | .St -ansiC . | ||