git: 9front

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