shithub: riscv

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