Annotation of coherent/b/lib/libc/sys/execv.c, revision 1.1.1.1

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

unix.superglobalmegacorp.com

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