shithub: riscv

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