shithub: riscv

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