shithub: riscv

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