Annotation of coherent/d/lib/libc/stdio/putchar.c, revision 1.1.1.1

1.1       root        1: /*
                      2:  * Standard I/O Library
                      3:  * putchar function for those too lazy to include stdio.h
                      4:  */
                      5: 
                      6: #include <stdio.h>
                      7: #undef putchar
                      8: 
                      9: int
                     10: putchar(c)
                     11: unsigned char  c;
                     12: {
                     13:        return (putc(c, stdout));
                     14: }

unix.superglobalmegacorp.com

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