Annotation of coherent/d/lib/libc/sys/execv.c, revision 1.1

1.1     ! root        1: /*
        !             2:  * execv(name, argv)
        !             3:  * Sys exec with an array of arguments, but no
        !             4:  * environment specified.
        !             5:  */
        !             6: 
        !             7: extern char **environ;
        !             8: 
        !             9: execv(name, argv)
        !            10: char *name;
        !            11: char *argv[];
        !            12: {
        !            13:        execve(name, argv, environ);
        !            14: }

unix.superglobalmegacorp.com

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