git: 9front

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