shithub: riscv

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