Annotation of researchv10dc/libc/stdio/puts.c, revision 1.1.1.1

1.1       root        1: /* @(#)puts.c  4.1 (Berkeley) 12/21/80 */
                      2: #include       <stdio.h>
                      3: 
                      4: puts(s)
                      5: register char *s;
                      6: {
                      7:        register c;
                      8: 
                      9:        while (c = *s++)
                     10:                putchar(c);
                     11:        return(putchar('\n'));
                     12: }

unix.superglobalmegacorp.com

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