shithub: riscv

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