shithub: riscv

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