git: 9front

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