home *** CD-ROM | disk | FTP | other *** search
- /*
- (C) 1995-96 AROS - The Amiga Replacement OS
- $Id: exit.c,v 1.2 1997/01/17 14:04:46 digulla Exp $
-
- Desc: ANSI C function exit()
- Lang: english
- */
- #include <exec/types.h>
- #include <setjmp.h>
-
- extern LONG __startup_error;
- extern jmp_buf __startup_jmp_buf;
-
- /*****************************************************************************
-
- NAME */
- #include <stdlib.h>
-
- void exit (
-
- /* SYNOPSIS */
- int code)
-
- /* FUNCTION
- Terminates the running program. The code is returned to the
- program which has called the running program.
-
- INPUTS
- code - Exit code. 0 for success, other values for failure.
-
- RESULT
- None. This function does not return.
-
- NOTES
-
- EXAMPLE
- if (no_problems)
- exit (0);
-
- if (warning)
- exit (5);
-
- if (error)
- exit (10);
-
- if (fatal)
- exit (20);
-
- BUGS
-
- SEE ALSO
- atexit(), on_exit()
-
- INTERNALS
-
- HISTORY
- 16.12.1996 digulla created
-
- ******************************************************************************/
- {
- __startup_error = code;
-
- longjmp (__startup_jmp_buf, 1);
-
- /* never reached */
- } /* exit */
-
-