shithub: riscv

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