shithub: riscv

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