shithub: riscv

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