|
|
coherent
/*
* Execlp(name, arg0, arg1, ..., argn, NULL)
* Repeatedly do sys exec on each of the directories in the
* search rules found in the environment.
*/
#include <stdio.h>
/* VARARGS */
execlp(name, arg0)
char *name;
char *arg0;
{
return (execvp(name, &arg0));
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.