git: 9front

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