remove eprintf.c -- not used in current <assert.h>
[unix-history] / usr / src / lib / libc / stdlib / abort.3
.\" Copyright (c) 1990 The Regents of the University of California.
.\" All rights reserved.
.\"
.\" %sccs.include.redist.man%
.\"
.\" @(#)abort.3 6.5 (Berkeley) %G%
.\"
.TH ABORT 3 ""
.AT 3
.SH NAME
abort \- cause abnormal program termination
.SH SYNOPSIS
.nf
.ft B
#include <stdlib.h>
void
abort(void);
.ft R
.fi
.SH DESCRIPTION
The
.I abort
function causes abnormal program termination to occur, unless the
signal SIGABRT is being caught and the signal handler does not return.
.PP
No open streams are closed or flushed.
.SH SEE ALSO
sigvec(2), exit(2)
.SH STANDARDS
.B Abort
conforms to ANSI X3.159-1989 (``ANSI C'').