shithub: riscv

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