shithub: riscv

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