shithub: riscv

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