shithub: riscv

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