shithub: plan9front

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