shithub: riscv

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