comparison libdecnumber/dpd/decimal64Symbols.h @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a06113de4d67
1 #if !defined(DECIMAL64SYMBOLS)
2 #define DECIMAL64SYMBOLS
3
4 #ifdef IN_LIBGCC2
5 #define decDigitsFromDPD __decDigitsFromDPD
6 #define decDigitsToDPD __decDigitsToDPD
7 #define decimal64Canonical __decimal64Canonical
8 #define decimal64FromNumber __decimal64FromNumber
9 #define decimal64FromString __decimal64FromString
10 #define decimal64IsCanonical __decimal64IsCanonical
11 #define decimal64ToEngString __decimal64ToEngString
12 #define decimal64ToNumber __decimal64ToNumber
13 #define decimal64ToString __decimal64ToString
14 #define COMBEXP __decnnCOMBEXP
15 #define COMBMSD __decnnCOMBMSD
16
17 /* DPD2BIN and BIN2DPD are used in support for decimal32/decimal64/decimal128
18 and also in support for decSingle/decDouble/decQuad. Rename them in case
19 both types of support are used in the same executable. */
20 #undef DPD2BIN
21 #define DPD2BIN __decnnDPD2BIN
22 #undef BIN2DPD
23 #define BIN2DPD __decnnBIN2DPD
24 #endif
25
26 #endif