1 extern void startboot(char*, char**); 2 3 void _main(char * argv0)4 _main(char *argv0) 5 { 6 startboot(argv0, &argv0); 7 } 8