shithub: riscv

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