Use more appropriate types for pt_regs struct, e.g. 16-bit types for 16-bit
[cake.git] / rom / dos / exit.c
blob08f0f5fdb5dee55965f97f1f86527dd77977daa7
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
8 #include "dos_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <proto/dos.h>
15 AROS_LH1(void, Exit,
17 /* SYNOPSIS */
18 AROS_LHA(LONG, returnCode, D1),
20 /* LOCATION */
21 struct DosLibrary *, DOSBase, 24, Dos)
23 /* FUNCTION
25 Obsolete function, the purpose of which was to exit from a BCPL program.
26 DO NOT CALL THIS FUNCTION!
28 INPUTS
30 RESULT
32 NOTES
34 This function is obsolete and doens't do anything. Therefore, do not
35 call it!
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 INTERNALS
45 *****************************************************************************/
47 AROS_LIBFUNC_INIT
49 /* Poof, program lost in BCPL space */
51 /* Maybe we should somehow notify the user that this is not
52 a function to use in a direct manner? */
54 AROS_LIBFUNC_EXIT
55 } /* Exit */