git: 9front

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