shithub: front

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