shithub: riscv

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