shithub: riscv

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