shithub: riscv

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