shithub: riscv

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