shithub: riscv

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