home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / math / cephes / qfloat / mconf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-17  |  503 b   |  23 lines

  1. /*  mconf.h  */
  2.  
  3. /* Constant definitions for math error conditions
  4.  */
  5.  
  6. #define DOMAIN        1    /* argument domain error */
  7. #define SING        2    /* argument singularity */
  8. #define OVERFLOW    3    /* overflow range error */
  9. #define UNDERFLOW    4    /* underflow range error */
  10. #define TLOSS        5    /* total loss of precision */
  11. #define PLOSS        6    /* partial loss of precision */
  12.  
  13. #define EDOM        33
  14. #define ERANGE        34
  15.  
  16. /* Type of computer */
  17. /* define DEC 1 */
  18. #define IBMPC 1
  19. /* define MIEEE 1*/
  20. /* define UNK 1 */
  21. #define ANSIC 0
  22.  
  23.