git: 9front

ref: a0fd79029b5b1d0a70754a34d0a38c7075b8ae52
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);
}