|
|
1.1 root 1: #include "libioP.h"
2: #include "stdio.h"
3:
4: #undef putw
5:
6: int
7: putw(w, fp)
8: int w;
9: FILE *fp;
10: {
11: _IO_size_t written;
12: COERCE_FILE(fp);
13: written = _IO_sputn(fp, (const char *)&w, sizeof(w));
14: return written == sizeof(w) ? 0 : EOF;
15: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.