shithub: riscv

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