shithub: riscv

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