![]() -> Click here to learn how to get live help <- |
ABORTIndexNAMEabort - cause abnormal program terminationSYNOPSIS#include <stdlib.h> void abort(void); DESCRIPTIONThe fBabort()fP function causes abnormal program termination unless the signal SIGABRT is caught and the signal handler does not return. If the fBabort()fP function causes program termination, all open streams are closed and flushed.If the SIGABRT signal is blocked or ignored, the fBabort()fP function will still override it. RETURN VALUEThe fBabort()fP function never returns.CONFORMING TOSVID 3, POSIX, BSD 4.3, ISO 9899 (C99)SEE ALSOsigaction(2), exit(3), raise(3)
Index |