git: 9front

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