shithub: riscv

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