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

1.1     ! root        1: /*
        !             2:  * Execl(name, arg0, arg1, ..., argn, NULL)
        !             3:  * Sys exec with a list of arguments and no environment
        !             4:  * given.
        !             5:  */
        !             6: 
        !             7: extern char    **environ;
        !             8: 
        !             9: execl(name, arg0)
        !            10: char *name;
        !            11: char *arg0;
        !            12: {
        !            13:        execve(name, &arg0, environ);
        !            14: }

unix.superglobalmegacorp.com

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