shithub: riscv

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