|
|
1.1 root 1: /*
2: * Standard I/O Library Internals
3: * Buffered output
4: */
5:
6: #include <stdio.h>
7:
8: int
9: _fputb(c, fp)
10: register int c;
11: register FILE *fp;
12: {
13: if (_fpseek(fp))
14: return (EOF);
15: fp->_cc = _ep(fp) - fp->_dp - 1;
16: return (*fp->_cp++=(unsigned char)c);
17: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.