shithub: riscv

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