Annotation of gcc/config/clipper/xm-clix.h, revision 1.1.1.1

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: /* If compiled with GNU C, use the built-in alloca */
                     28: #ifdef __GNUC__
                     29: #define alloca __builtin_alloca
                     30: #endif
                     31: 
                     32: /* isinf isn't there, but finite is. */
                     33: #define isinf(x) (!finite(x))
                     34: 
                     35: 
                     36: #define USG
                     37: 
                     38: #define bcopy(a,b,c) memcpy (b,a,c)
                     39: #define bzero(a,b) memset (a,0,b)
                     40: #define bcmp(a,b,c) memcmp (a,b,c)
                     41: #define index strchr
                     42: #define rindex strrchr
                     43: 
                     44: #define TARGET_MEM_FUNCTIONS

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.