shithub: riscv

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