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

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

unix.superglobalmegacorp.com

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