shithub: riscv

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