|
|
1.1 root 1: /*
2: * Standard stream library for the C compiler and other compilers that use
3: * C compiler facilities.
4: * Output an ival_t.
5: */
6: #include <stdio.h>
7: #ifdef vax
8: #include "INC$LIB:mch.h"
9: #else
10: #include "mch.h"
11: #endif
12:
13: iput(i)
14: ival_t i;
15: {
16: register unsigned char *p;
17: register n;
18: ival_t tempi;
19:
20: tempi = i;
21: p = &tempi;
22: n = sizeof(ival_t);
23: do {
24: bput(*p++);
25: } while (--n);
26: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.