shithub: riscv

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