shithub: riscv

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