2 Copyright © 2003-2013, The AROS Development Team. All rights reserved.
8 #include <libraries/stdc.h>
12 /*****************************************************************************
23 Terminates the running program immediately. The code is returned to
24 the program which has called the running program. In contrast to
25 exit(), this function does not call user exit-handlers added with
26 atexit() or on_exit(). It does, however, close open filehandles.
29 code - Exit code. 0 for success, other values for failure.
32 None. This function does not return.
35 This function must not be used in a shared library or in a threaded
47 ******************************************************************************/
49 __stdc_jmp2exit(0, code
);