shithub: riscv

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