shithub: riscv

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