shithub: riscv

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