git: 9front

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