git: 9front

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