shithub: riscv

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