shithub: riscv

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