shithub: plan9front

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