shithub: plan9front

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