shithub: riscv

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