summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/abort.3
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/stdlib/abort.3')
-rw-r--r--src/lib/libc/stdlib/abort.320
1 files changed, 8 insertions, 12 deletions
diff --git a/src/lib/libc/stdlib/abort.3 b/src/lib/libc/stdlib/abort.3
index ab57327585..743d42dd8a 100644
--- a/src/lib/libc/stdlib/abort.3
+++ b/src/lib/libc/stdlib/abort.3
@@ -33,8 +33,7 @@
33.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34.\" SUCH DAMAGE. 34.\" SUCH DAMAGE.
35.\" 35.\"
36.\" from: @(#)abort.3 6.7 (Berkeley) 6/29/91 36.\" $OpenBSD: abort.3,v 1.6 2000/04/20 13:50:01 aaron Exp $
37.\" $Id: abort.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $
38.\" 37.\"
39.Dd June 29, 1991 38.Dd June 29, 1991
40.Dt ABORT 3 39.Dt ABORT 3
@@ -49,23 +48,20 @@
49.Sh DESCRIPTION 48.Sh DESCRIPTION
50The 49The
51.Fn abort 50.Fn abort
52function causes abnormal program termination to occur, unless the 51function causes abnormal program termination to occur, unless the signal
53signal
54.Dv SIGABRT 52.Dv SIGABRT
55is being caught and the signal handler does not return. 53is being caught and the signal handler does not return.
56.Pp 54.Pp
57No open streams are closed or flushed. 55Any open streams are flushed and closed.
58.Sh RETURN VALUES 56.Sh RETURN VALUES
59The 57The
60.Nm abort 58.Fn abort
61function 59function never returns.
62never returns.
63.Sh SEE ALSO 60.Sh SEE ALSO
64.Xr sigaction 2 , 61.Xr sigaction 2 ,
65.Xr exit 2 62.Xr exit 3
66.Sh STANDARDS 63.Sh STANDARDS
67The 64The
68.Fn abort 65.Fn abort
69function 66function conforms to
70conforms to 67.St -p1003.1-90 .
71.St -ansiC .