Added "support" for the 64 bit data structures of EHCI in appendix B, in case the...
[cake.git] / compiler / startup / startup.h
blob3d6a8d8c46af6b87a1c3f0c6c965587b01d0555c
1 #ifndef __AROS_STARTUP_H
2 #define __AROS_STARTUP_H
4 #include <setjmp.h>
5 #include <proto/exec.h>
6 #include <aros/symbolsets.h>
8 extern char *__argstr;
9 extern ULONG __argsize;
10 extern char **__argv;
11 extern int __argc;
12 struct WBStartup;
13 extern struct WBStartup *WBenchMsg;
15 struct aros_startup
17 jmp_buf as_startup_jmp_buf;
18 LONG as_startup_error;
21 extern struct aros_startup __aros_startup;
23 DECLARESET(PROGRAM_ENTRIES);
24 void __startup_entries_next(void);
26 #endif /* !__AROS_STARTUP_H */