git: 9front

ref: 80496f55a7b54a4e83fabe1ede56e6f70c1cb207
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);
}