|
|
1.1 root 1: /* Config file for Clipper running Clix, system V. 3.2 clone */
2:
3:
4: /* #defines that need visibility everywhere. */
5: #define FALSE 0
6: #define TRUE 1
7:
8: /* target machine dependencies.
9: tm.h is a symbolic link to the actual target specific file. */
10:
11: #include "tm.h"
12:
13: /* This describes the machine the compiler is hosted on. */
14: #define HOST_BITS_PER_CHAR 8
15: #define HOST_BITS_PER_SHORT 16
16: #define HOST_BITS_PER_INT 32
17: #define HOST_BITS_PER_LONG 32
18: #define HOST_BITS_PER_LONGLONG 64
19:
20: /* This machine uses IEEE floats. */
21: /* #define HOST_FLOAT_FORMAT IEEE_FLOAT_FORMAT */
22:
23: /* Arguments to use with `exit'. */
24: #define SUCCESS_EXIT_CODE 0
25: #define FATAL_EXIT_CODE 33
26:
27: /* isinf isn't there, but finite is. */
28: #define isinf(x) (!finite(x))
29:
30:
31: #define USG
32:
33: #define bcopy(a,b,c) memcpy (b,a,c)
34: #define bzero(a,b) memset (a,0,b)
35: #define bcmp(a,b,c) memcmp (a,b,c)
36: #define index strchr
37: #define rindex strrchr
38:
39: #define TARGET_MEM_FUNCTIONS
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.