shithub: riscv

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