git: 9front

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