git: 9front

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