Annotation of coherent/b/lib/libc/XSTDIO/putc.c, revision 1.1.1.1

1.1       root        1: /*
                      2:  * libc/stdio/putc.c
                      3:  * ANSI-compliant C standard i/o library.
                      4:  * putc()
                      5:  * ANSI 4.9.7.8.
                      6:  * Write character c to stream.
                      7:  */
                      8: 
                      9: #include <stdio.h>
                     10: #undef putc
                     11: 
                     12: int
                     13: putc(c, stream) int c; FILE *stream;
                     14: {
                     15:        return (*stream->_f2p->_pt)(c,stream);
                     16: }
                     17: 
                     18: /* end of libc/stdio/putc.c */

unix.superglobalmegacorp.com

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