home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / mesch12a.zip / machine.h < prev    next >
C/C++ Source or Header  |  1994-01-14  |  4KB  |  194 lines

  1. /* machine.h.  Generated automatically by configure.  */
  2. /* Any machine specific stuff goes here */
  3. /* Add details necessary for your own installation here! */
  4.  
  5. /* This is for use with "configure" -- if you are not using configure
  6.     then use machine.van for the "vanilla" version of machine.h */
  7.  
  8. /* Note special macros: ANSI_C (ANSI C syntax)
  9.             SEGMENTED (segmented memory machine e.g. MS-DOS)
  10.             MALLOCDECL (declared if malloc() etc have
  11.                     been declared) */
  12.  
  13. #define const 
  14.  
  15. /* #undef MALLOCDECL */
  16. #define NOT_SEGMENTED 1
  17. /* #undef HAVE_COMPLEX_H */
  18. #define HAVE_MALLOC_H 1
  19. #define STDC_HEADERS 1
  20. #define HAVE_BCOPY 1
  21. #define HAVE_BZERO 1
  22. #define CHAR0ISDBL0 1
  23. #define WORDS_BIGENDIAN 1
  24. #define U_INT_DEF 1
  25. #define VARARGS 1
  26.  
  27.  
  28. /* for basic or larger versions */
  29. #define COMPLEX 1
  30. #define SPARSE 1
  31.  
  32. /* for loop unrolling */
  33. /* #undef VUNROLL */
  34. /* #undef MUNROLL */
  35.  
  36. /* for segmented memory */
  37. #ifndef NOT_SEGMENTED
  38. #define    SEGMENTED
  39. #endif
  40.  
  41. /* if the system has malloc.h */
  42. #ifdef HAVE_MALLOC_H
  43. #define    MALLOCDECL    1
  44. #include    <malloc.h>
  45. #endif
  46.  
  47. /* any compiler should have this header */
  48. /* if not, change it */
  49. #include        <stdio.h>
  50.  
  51.  
  52. /* Check for ANSI C memmove and memset */
  53. #ifdef STDC_HEADERS
  54.  
  55. /* standard copy & zero functions */
  56. #define    MEM_COPY(from,to,size)    memmove((to),(from),(size))
  57. #define    MEM_ZERO(where,size)    memset((where),'\0',(size))
  58.  
  59. #ifndef ANSI_C
  60. #define ANSI_C 1
  61. #endif
  62.  
  63. #endif
  64.  
  65. /* standard headers */
  66. #ifdef ANSI_C
  67. #include    <stdlib.h>
  68. #include    <stddef.h>
  69. #include    <string.h>
  70. #include    <float.h>
  71. #endif
  72.  
  73.  
  74. /* if have bcopy & bzero and no alternatives yet known, use them */
  75. #ifdef HAVE_BCOPY
  76. #ifndef MEM_COPY
  77. /* nonstandard copy function */
  78. #define    MEM_COPY(from,to,size)    bcopy((char *)(from),(char *)(to),(int)(size))
  79. #endif
  80. #endif
  81.  
  82. #ifdef HAVE_BZERO
  83. #ifndef MEM_ZERO
  84. /* nonstandard zero function */
  85. #define    MEM_ZERO(where,size)    bzero((char *)(where),(int)(size))
  86. #endif
  87. #endif
  88.  
  89. /* if the system has complex.h */
  90. #ifdef HAVE_COMPLEX_H
  91. #include    <complex.h>
  92. #endif
  93.  
  94. /* If prototypes are available & ANSI_C not yet defined, then define it,
  95.     but don't include any header files as the proper ANSI C headers
  96.         aren't here */
  97. #define HAVE_PROTOTYPES 1
  98. #ifdef HAVE_PROTOTYPES
  99. #ifndef ANSI_C
  100. #define ANSI_C  1
  101. #endif
  102. #endif
  103.  
  104. /* floating point precision */
  105.  
  106. /* you can choose single, double or long double (if available) precision */
  107.  
  108. #define FLOAT         1
  109. #define DOUBLE         2
  110. #define LONG_DOUBLE     3
  111.  
  112. /* #undef REAL_FLT */
  113. /* #undef REAL_DBL */
  114.  
  115. /* if nothing is defined, choose double precision */
  116. #ifndef REAL_DBL
  117. #ifndef REAL_FLT
  118. #define REAL_DBL 1
  119. #endif
  120. #endif
  121.  
  122. /* single precision */
  123. #ifdef REAL_FLT
  124. #define  Real float
  125. #define  LongReal float
  126. #define REAL FLOAT
  127. #define LONGREAL FLOAT
  128. #endif
  129.  
  130. /* double precision */
  131. #ifdef REAL_DBL
  132. #define Real double
  133. #define LongReal double
  134. #define REAL DOUBLE
  135. #define LONGREAL DOUBLE
  136. #endif
  137.  
  138.  
  139. /* machine epsilon or unit roundoff error */
  140. /* This is correct on most IEEE Real precision systems */
  141. #ifdef DBL_EPSILON
  142. #if REAL == DOUBLE
  143. #define    MACHEPS    DBL_EPSILON
  144. #elif REAL == FLOAT
  145. #define    MACHEPS    FLT_EPSILON
  146. #elif REAL == LONGDOUBLE
  147. #define MACHEPS LDBL_EPSILON
  148. #endif
  149. #endif
  150.  
  151. #define F_MACHEPS 1.19209e-07
  152. #define D_MACHEPS 2.22045e-16
  153.  
  154. #ifndef MACHEPS
  155. #if REAL == DOUBLE
  156. #define    MACHEPS    D_MACHEPS
  157. #elif REAL == FLOAT  
  158. #define MACHEPS F_MACHEPS
  159. #elif REAL == LONGDOUBLE
  160. #define MACHEPS D_MACHEPS
  161. #endif
  162. #endif
  163.  
  164. /* #undef M_MACHEPS */
  165.  
  166. /********************
  167. #ifdef DBL_EPSILON
  168. #define    MACHEPS    DBL_EPSILON
  169. #endif
  170. #ifdef M_MACHEPS
  171. #ifndef MACHEPS
  172. #define MACHEPS    M_MACHEPS
  173. #endif
  174. #endif
  175. ********************/
  176.  
  177. #define    M_MAX_INT 2147483647
  178. #ifdef    M_MAX_INT
  179. #ifndef MAX_RAND
  180. #define    MAX_RAND ((double)(M_MAX_INT))
  181. #endif
  182. #endif
  183.  
  184. /* for non-ANSI systems */
  185. #ifndef HUGE_VAL
  186. #define HUGE_VAL HUGE
  187. #endif
  188.  
  189.  
  190. #ifdef ANSI_C
  191. extern    int    isatty(int);
  192. #endif
  193.  
  194.