git: 9front

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