git: 9front

ref: 2bc0d70700b848f9abc4b47e384db5f268d42e21
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);
}