shithub: front

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