git: 9front

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