shithub: riscv

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