decimal32Symbols.h 890 B

1234567891011121314151617181920212223242526
  1. #if !defined(DECIMAL32SYMBOLS)
  2. #define DECIMAL32SYMBOLS
  3. #ifdef IN_LIBGCC2
  4. #define decDigitsFromDPD __decDigitsFromDPD
  5. #define decDigitsToDPD __decDigitsToDPD
  6. #define decimal32Canonical __decimal32Canonical
  7. #define decimal32FromNumber __decimal32FromNumber
  8. #define decimal32FromString __decimal32FromString
  9. #define decimal32IsCanonical __decimal32IsCanonical
  10. #define decimal32ToEngString __decimal32ToEngString
  11. #define decimal32ToNumber __decimal32ToNumber
  12. #define decimal32ToString __decimal32ToString
  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