remove eprintf.c -- not used in current <assert.h>
[unix-history] / usr / src / lib / libc / stdlib / abort.3
CommitLineData
98d853cb
KB
1.\" Copyright (c) 1990 The Regents of the University of California.
2.\" All rights reserved.
3.\"
4.\" %sccs.include.redist.man%
5.\"
44f02f1b 6.\" @(#)abort.3 6.5 (Berkeley) %G%
3ad85ca0 7.\"
b5c149ec 8.TH ABORT 3 ""
3ad85ca0
KM
9.AT 3
10.SH NAME
98d853cb 11abort \- cause abnormal program termination
44f02f1b
KB
12.SH SYNOPSIS
13.nf
14.ft B
15#include <stdlib.h>
16
17void
18abort(void);
19.ft R
20.fi
3ad85ca0 21.SH DESCRIPTION
98d853cb
KB
22The
23.I abort
24function causes abnormal program termination to occur, unless the
25signal SIGABRT is being caught and the signal handler does not return.
26.PP
27No open streams are closed or flushed.
3ad85ca0 28.SH SEE ALSO
98d853cb
KB
29sigvec(2), exit(2)
30.SH STANDARDS
31.B Abort
32conforms to ANSI X3.159-1989 (``ANSI C'').