1 #include <u.h> 2 #include <libc.h> 3 4 int execl(char * f,...)5 execl(char *f, ...) 6 { 7 8 return exec(f, &f+1); 9 } 10