shithub: riscv

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