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