shithub: riscv

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