3 * - C Runtime 0 Common Code
6 typedef void (*exithandler_t)(void);
7 typedef void (*constructor_t)(void);
9 exithandler_t _crt0_exit_handler;
10 extern constructor_t _crtbegin_ctors[];
11 extern void _exit(int status) __attribute__((noreturn));
13 void start(int argc, char *argv[], char **envp)
18 for( i = 0; _crtbegin_ctors[i]; i ++ )
21 rv = main(argc, argv, envp);
23 if( _crt0_exit_handler )