shithub: riscv

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