git: 9front

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