git: 9front

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