git: 9front

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