git: 9front

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