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