git: 9front

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