shithub: front

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