shithub: riscv

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