abort function — Terminates the program abnormally
void abort( )
The abort
function raises
the SIGABRT
signal. Unless the
program has registered a handler for SIGABRT
, the default action is to
terminate the program without destroying any automatic or static
objects and without calling any atexit
functions.