git: 9front

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