git: 9front

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