shithub: riscv

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