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