shithub: riscv

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