git: 9front

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