git: 9front

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