shithub: riscv

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