git: 9front

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