abort()

Syntax

  #include <stdlib.h>

  

void abort(void);

Description

abort() terminates the program. It does the following (in this order):

If your application handles SIGABRT and the signal handler does not return (for example, because it does a longjmp()), the application is not halted.

Return

None

See also

atexit()

exit()

raise()

signal()