shithub: front

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