git: 9front

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