shithub: plan9front

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