File:  [gforth] / gforth / dosconf.h
Revision 1.4: download - view: text, annotated - select for diffs
Sat Dec 14 14:21:19 1996 UTC (27 years, 3 months ago) by anton
Branches: MAIN
CVS tags: v0-3-0, v0-2-1, HEAD
fixed a few bugs
changed version number to 0.2.1

    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: #define HAVE_EXPM1 1
   40: 
   41: /* Define if you have the log1p function.  */
   42: #define HAVE_LOG1P 1
   43: 
   44: /* Define if you have the rint function.  */
   45: #define HAVE_RINT 1
   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) */
   60: 

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