Annotation of coherent/b/lib/libc/stdio/fgetc.c, revision 1.1.1.1

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

unix.superglobalmegacorp.com

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