shithub: riscv

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