shithub: riscv

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