git: 9front

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