shithub: riscv

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