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

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

unix.superglobalmegacorp.com

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