shithub: riscv

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