shithub: riscv

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