git: 9front

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