shithub: riscv

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