shithub: front

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