shithub: riscv

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