2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
5 ANSI C function exit().
8 #include <exec/types.h>
12 /*****************************************************************************
23 Causes abnormal program termination. If there is a signal handler
24 for SIGABORT, then the handler will be called. If the handler
25 returns, then the program is continued.
31 None. This function does not return.
34 This function must not be used in a shared library or
35 in a threaded application.
42 Signal handling is not implemented yet.
49 ******************************************************************************/
51 fprintf(stderr
, "Aborted.\n");