shithub: riscv

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