execl.c 86 B

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