|
|
1.1 root 1: /*
2: * libc/stdio/_fgete.c
3: * ANSI-compliant C standard i/o library internals.
4: * _fgete()
5: * Read character from write-only stream; always returns error.
6: */
7:
8: #include <stdio.h>
9:
10: int
11: _fgete(fp) FILE *fp;
12: {
13: fp->_ff1 |= _FERR;
14: return EOF;
15: }
16:
17: /* end of libc/stdio/_fgete.c */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.