plan9front/sys/src/libc/port/execl.c

10 lines
86 B
C

#include <u.h>
#include <libc.h>
int
execl(char *f, ...)
{
return exec(f, &f+1);
}