Provided by:
manpages-dev_2.62-1_all 
NAME
abort - cause abnormal program termination
SYNOPSIS
#include <stdlib.h>
void abort(void);
DESCRIPTION
The abort() function causes abnormal program termination unless the
signal SIGABRT is caught and the signal handler does not return. If
the abort() function causes program termination, all open streams are
closed and flushed.
If the SIGABRT signal is blocked or ignored, the abort() function will
still override it.
The abort() function never returns.
SVr4, POSIX.1-2001, 4.3BSD, C89, C99
sigaction(2), exit(3), raise(3)