|
|
1.1 root 1: /*
2: * Standard I/O Library
3: * Put word (int) to file
4: */
5:
6: #include <stdio.h>
7:
8: int
9: fputw(w, fp)
10: int w;
11: register FILE *fp;
12: {
13: putc(w, fp);
14: putc(w>>8, fp);
15: return (w);
16: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.