git: 9front

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