Annotation of gforth/os2conf.h, revision 1.1

1.1     ! pazsan      1: /* config.h.  Generated automatically by configure.  */
        !             2: /* config.h.in.  Generated automatically from configure.in by autoheader.  */
        !             3: 
        !             4: /* Define if `sys_siglist' is declared by <signal.h>.  */
        !             5: #undef SYS_SIGLIST_DECLARED
        !             6: 
        !             7: /* Define if your processor stores words with the most significant
        !             8:    byte first (like Motorola and SPARC, unlike Intel and VAX).  */
        !             9: #undef WORDS_BIGENDIAN
        !            10: 
        !            11: /* an integer type that is as long as a pointer */
        !            12: #define CELL_TYPE int
        !            13: 
        !            14: /* an integer type that is twice as long as a pointer */
        !            15: #define DOUBLE_CELL_TYPE long long
        !            16: 
        !            17: /* a path separator character */
        !            18: #define PATHSEP ';'
        !            19: 
        !            20: /* define this if there is no working DOUBLE_CELL_TYPE on your machine */
        !            21: /* #undef BUGGY_LONG_LONG */
        !            22: 
        !            23: /* The number of bytes in a char *.  */
        !            24: #define SIZEOF_CHAR_P 4
        !            25: 
        !            26: /* The number of bytes in a int.  */
        !            27: #define SIZEOF_INT 4
        !            28: 
        !            29: /* The number of bytes in a long.  */
        !            30: #define SIZEOF_LONG 4
        !            31: 
        !            32: /* The number of bytes in a long long.  */
        !            33: #define SIZEOF_LONG_LONG 8
        !            34: 
        !            35: /* The number of bytes in a short.  */
        !            36: #define SIZEOF_SHORT 2
        !            37: 
        !            38: /* Define if you have the expm1 function.  */
        !            39: #undef HAVE_EXPM1
        !            40: 
        !            41: /* Define if you have the log1p function.  */
        !            42: #undef HAVE_LOG1P
        !            43: 
        !            44: /* Define if you have the rint function.  */
        !            45: #undef HAVE_RINT
        !            46: 
        !            47: /* Define if you have the sys_siglist function.  */
        !            48: #undef HAVE_SYS_SIGLIST
        !            49: 
        !            50: /* Define if you have the m library (-lm).  */
        !            51: #define HAVE_LIBM 1
        !            52: /* Of course, sys_siglist is a variable, not a function */
        !            53: 
        !            54: /* Define if you want to force a direct threaded code implementation
        !            55:    (does not work on all machines */
        !            56: /* Define if you want to force an indirect threaded code implementation */
        !            57: /* Define if you want to use explicit register declarations for better
        !            58:    performance or for more convenient CODE words (does not work with
        !            59:    all GCC versions on all machines) */

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>