shithub: riscv

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