shithub: riscv

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