shithub: riscv

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