shithub: riscv

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