shithub: riscv

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