shithub: riscv

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