2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
8 #include <libraries/stdc.h>
13 /*****************************************************************************
24 Causes abnormal program termination. If there is a signal handler
25 for SIGABORT, then the handler will be called. If the handler
26 returns, then the program is aborted anyway.
32 None. This function does not return.
35 This function must not be used in a shared library or
36 in a threaded application.
43 Signal handling is not implemented yet.
50 ******************************************************************************/
55 __stdc_jmp2exit(0, 20);
57 assert(0); /* Should not be reached and will likely bomb recursively */