shithub: riscv

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