shithub: riscv

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