ABORT - terminate program.

(ANSI Standard)

Usage:

#include <stdlib.h>
abort();

Description:

"abort" raises the SIGABRT signal. This will terminate program execution unless the SIGABRT signal is being caught (i.e. unless the program has used "signal" to set up a handler for this signal). All open output streams are flushed and all open streams are closed.

See Also:

expl c lib signal

Copyright © 1996, Thinkage Ltd.