[Linux manuál]
Návod, kniha: Linux Programmer's Manual
abort: způsobit neobvyklé ukončení programu
Originální popis anglicky: abort - cause abnormal program terminationNávod, kniha: Linux Programmer's Manual
STRUČNĚ
#include <stdlib.h>void abort(void);
POPIS / INSTRUKCE
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.NÁVRATOVÁ HODNOTA
The abort() function never returns.ODPOVÍDAJÍCÍ
SVID 3, POSIX, BSD 4.3, ISO 9899 (C99)SOUVISEJÍCÍ
sigaction(2), exit(3), raise(3)| 1993-04-12 | GNU |