shithub: riscv

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