Make all bucket and overflow addresses unsigned
[unix-history] / usr / src / lib / libc / stdlib / abort.3
... / ...
CommitLineData
1.\" Copyright (c) 1990 The Regents of the University of California.
2.\" All rights reserved.
3.\"
4.\" %sccs.include.redist.man%
5.\"
6.\" @(#)abort.3 6.5 (Berkeley) %G%
7.\"
8.TH ABORT 3 ""
9.AT 3
10.SH NAME
11abort \- cause abnormal program termination
12.SH SYNOPSIS
13.nf
14.ft B
15#include <stdlib.h>
16
17void
18abort(void);
19.ft R
20.fi
21.SH DESCRIPTION
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.
28.SH SEE ALSO
29sigvec(2), exit(2)
30.SH STANDARDS
31.B Abort
32conforms to ANSI X3.159-1989 (``ANSI C'').