diff options
author | Ian Lance Taylor <iant@google.com> | 2009-06-01 05:28:42 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2009-06-01 05:28:42 +0000 |
commit | 6863c0f0d1b5341d517571a00f511170296fb305 (patch) | |
tree | f028afdea12fb78bc6a465af6be09bc6bc49c844 /libdecnumber/dpd | |
parent | 5ac69a8037f6c26bd7b4202509eab0f01c664fa5 (diff) | |
download | gcc-6863c0f0d1b5341d517571a00f511170296fb305.zip gcc-6863c0f0d1b5341d517571a00f511170296fb305.tar.gz gcc-6863c0f0d1b5341d517571a00f511170296fb305.tar.bz2 |
decContext.h: Add extern "C" if compiling with C++.
* decContext.h: Add extern "C" if compiling with C++.
* decDPD.h: Likewise.
* decNumber.h: Likewise.
* dpd/decimal32.h: Likewise.
* dpd/decimal64.h: Likewise.
* dpd/decimal128.h: Likewise.
From-SVN: r148030
Diffstat (limited to 'libdecnumber/dpd')
-rw-r--r-- | libdecnumber/dpd/decimal128.h | 8 | ||||
-rw-r--r-- | libdecnumber/dpd/decimal32.h | 8 | ||||
-rw-r--r-- | libdecnumber/dpd/decimal64.h | 8 |
3 files changed, 24 insertions, 0 deletions
diff --git a/libdecnumber/dpd/decimal128.h b/libdecnumber/dpd/decimal128.h index 5214373..3c83c81 100644 --- a/libdecnumber/dpd/decimal128.h +++ b/libdecnumber/dpd/decimal128.h @@ -79,6 +79,10 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "decimal128Symbols.h" + #ifdef __cplusplus + extern "C" { + #endif + /* String conversions */ decimal128 * decimal128FromString(decimal128 *, const char *, decContext *); char * decimal128ToString(const decimal128 *, char *); @@ -93,4 +97,8 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see uint32_t decimal128IsCanonical(const decimal128 *); decimal128 * decimal128Canonical(decimal128 *, const decimal128 *); + #ifdef __cplusplus + } + #endif + #endif diff --git a/libdecnumber/dpd/decimal32.h b/libdecnumber/dpd/decimal32.h index ced33ef..94ddeb8 100644 --- a/libdecnumber/dpd/decimal32.h +++ b/libdecnumber/dpd/decimal32.h @@ -77,6 +77,10 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "decimal32Symbols.h" + #ifdef __cplusplus + extern "C" { + #endif + /* String conversions */ decimal32 * decimal32FromString(decimal32 *, const char *, decContext *); char * decimal32ToString(const decimal32 *, char *); @@ -91,4 +95,8 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see uint32_t decimal32IsCanonical(const decimal32 *); decimal32 * decimal32Canonical(decimal32 *, const decimal32 *); + #ifdef __cplusplus + } + #endif + #endif diff --git a/libdecnumber/dpd/decimal64.h b/libdecnumber/dpd/decimal64.h index a55a9c4..c501415 100644 --- a/libdecnumber/dpd/decimal64.h +++ b/libdecnumber/dpd/decimal64.h @@ -79,6 +79,10 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "decimal64Symbols.h" + #ifdef __cplusplus + extern "C" { + #endif + /* String conversions */ decimal64 * decimal64FromString(decimal64 *, const char *, decContext *); char * decimal64ToString(const decimal64 *, char *); @@ -93,4 +97,8 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see uint32_t decimal64IsCanonical(const decimal64 *); decimal64 * decimal64Canonical(decimal64 *, const decimal64 *); + #ifdef __cplusplus + } + #endif + #endif |