shithub: riscv

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