git: 9front

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