decimal128Symbols.h 906 B

1234567891011121314151617181920212223242526
  1. #if !defined(DECIMAL128SYMBOLS)
  2. #define DECIMAL128SYMBOLS
  3. #ifdef IN_LIBGCC2
  4. #define decDigitsFromDPD __decDigitsFromDPD
  5. #define decDigitsToDPD __decDigitsToDPD
  6. #define decimal128Canonical __decimal128Canonical
  7. #define decimal128FromNumber __decimal128FromNumber
  8. #define decimal128FromString __decimal128FromString
  9. #define decimal128IsCanonical __decimal128IsCanonical
  10. #define decimal128ToEngString __decimal128ToEngString
  11. #define decimal128ToNumber __decimal128ToNumber
  12. #define decimal128ToString __decimal128ToString
  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