1ABORT(3) Linux Programmer's Manual ABORT(3)
2
3
4
6 abort - cause abnormal program termination
7
9 #include <stdlib.h>
10
11 void abort(void);
12
14 The abort() function causes abnormal program termination unless the
15 signal SIGABRT is caught and the signal handler does not return. If
16 the abort() function causes program termination, all open streams are
17 closed and flushed.
18
19 If the SIGABRT signal is blocked or ignored, the abort() function will
20 still override it.
21
23 The abort() function never returns.
24
26 SVr4, POSIX.1-2001, 4.3BSD, C89, C99
27
29 sigaction(2), exit(3), raise(3)
30
31
32
33GNU 1993-04-12 ABORT(3)