shithub: riscv

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