|
|
1.1 root 1: /*
2: * Execlp(name, arg0, arg1, ..., argn, NULL)
3: * Repeatedly do sys exec on each of the directories in the
4: * search rules found in the environment.
5: */
6:
7: #include <stdio.h>
8:
9: /* VARARGS */
10: execlp(name, arg0)
11: char *name;
12: char *arg0;
13: {
14: return (execvp(name, &arg0));
15: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.