git: 9front

ref: eb8a82e385d2a7815f0ff96e9e09d8bbd04fea29
dir: /sys/src/libc/port/execl.c/

View raw version
#include <u.h>
#include <libc.h>

int
execl(char *f, ...)
{

	return exec(f, &f+1);
}