git: 9front

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