shithub: riscv

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