shithub: plan9front

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