shithub: riscv

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