fix __AROS_SETVECADDR invocations.
[AROS.git] / compiler / autoinit / startupvars.c
blob9d8671ae70dfdcd5901225dfe27fd61915900c26
1 /*
2 Copyright © 2009, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: autoinit library - global variables for the startup code
6 */
7 #include <exec/types.h>
9 /* pass these values to the command line handling function */
10 char *__argstr;
11 ULONG __argsize;
13 /* the command line handling functions will pass these values back to us */
14 char **__argv;
15 int __argc;
17 /* Code can set this value to indicate the return value of the program */
18 LONG __startup_error;