shithub: plan9front

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