home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / astrnomy / de118i.zip / PREC.H < prev    next >
Text File  |  1991-06-24  |  569b  |  29 lines

  1. /* Definitions for long double precision */
  2. #define LDOUBLE 1
  3. #if LDOUBLE
  4. #define DOUBLE long double
  5. #define SQRT sqrtl
  6. #define SIN sinl
  7. #define COS cosl
  8. #define TAN tanl
  9. #define LOG logl
  10. #define ASIN asinl
  11. #define ATAN atanl
  12. #define FLOOR floorl
  13. #define FABS fabsl
  14. #else
  15. #define DOUBLE double
  16. #define SQRT sqrt
  17. #define SIN sin
  18. #define COS cos
  19. #define TAN tan
  20. #define LOG log
  21. #define ASIN asin
  22. #define ATAN atan
  23. #define FLOOR floor
  24. #define FABS fabs
  25. #endif
  26.  
  27. DOUBLE SQRT(), SIN(), COS(), TAN(), LOG(), ASIN(), ATAN();
  28. DOUBLE FLOOR(), FABS();
  29.