Annotation of coherent/b/lib/libc/sys/execlp.c, revision 1.1

1.1     ! root        1: /*
        !             2:  * libc/sys/execlp.c
        !             3:  * Sys exec with a list of arguments but no environment,
        !             4:  * searching directories specified in PATH.
        !             5:  */
        !             6: 
        !             7: extern char **environ;
        !             8: 
        !             9: /* execlp(name, arg0, arg1, ..., argn, NULL) */
        !            10: /* VARARGS 1 */
        !            11: int
        !            12: execlp(name, arg0) char *name; char *arg0;
        !            13: {
        !            14:        return execvpe(name, &arg0, environ);
        !            15: }
        !            16: 
        !            17: /* end of libc/sys/execlp.c */

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.