shithub: riscv

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