git: 9front

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