(C) 1998 AROS - The Amiga Research OS
NAME
#include <stdlib.h>
void abort ()
SYNOPSIS
void
FUNCTION
Causes abnormal program termination. If there is a signal handler for SIGABORT, then the handler will be called. If the handler returns, then the program is continued.
INPUTS
None.
RESULT
None. This function does not return.
EXAMPLE
if (fatal_error) abort ();
SEE ALSO
signal(), exit()
NOTES
BUGS
Signal handling is not implemented yet.
INTERNALS
HISTORY
20.10.1998 hkiel
Amiga Research OS
17.01.1997 digulla
Corrected manpage
17.01.1997 digulla
Added abort() (untested)