shithub: plan9front

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