git: 9front

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