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

1.1     ! root        1: /*
        !             2:  * libc/sys/execvp.c
        !             3:  * Sys exec with an array of arguments but no environment,
        !             4:  * searching directories specified in PATH.
        !             5:  */
        !             6: 
        !             7: extern char **environ;
        !             8: 
        !             9: /* execvp(name, argv) */
        !            10: int
        !            11: execvp(name, argv) char *name; char *argv[];
        !            12: {
        !            13:        return execvpe(name, argv, environ);
        !            14: }
        !            15: 
        !            16: /* end of libc/sys/execvp.c */

unix.superglobalmegacorp.com

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