shithub: riscv

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