shithub: riscv

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