git: 9front

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