shithub: riscv

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