decimal64Symbols.h 890 B

1234567891011121314151617181920212223242526
  1. #if !defined(DECIMAL64SYMBOLS)
  2. #define DECIMAL64SYMBOLS
  3. #ifdef IN_LIBGCC2
  4. #define decDigitsFromDPD __decDigitsFromDPD
  5. #define decDigitsToDPD __decDigitsToDPD
  6. #define decimal64Canonical __decimal64Canonical
  7. #define decimal64FromNumber __decimal64FromNumber
  8. #define decimal64FromString __decimal64FromString
  9. #define decimal64IsCanonical __decimal64IsCanonical
  10. #define decimal64ToEngString __decimal64ToEngString
  11. #define decimal64ToNumber __decimal64ToNumber
  12. #define decimal64ToString __decimal64ToString
  13. #define COMBEXP __decnnCOMBEXP
  14. #define COMBMSD __decnnCOMBMSD
  15. /* DPD2BIN and BIN2DPD are used in support for decimal32/decimal64/decimal128
  16. and also in support for decSingle/decDouble/decQuad. Rename them in case
  17. both types of support are used in the same executable. */
  18. #undef DPD2BIN
  19. #define DPD2BIN __decnnDPD2BIN
  20. #undef BIN2DPD
  21. #define BIN2DPD __decnnBIN2DPD
  22. #endif
  23. #endif