shithub: riscv

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