shithub: riscv

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