shithub: riscv

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