git: 9front

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