summaryrefslogtreecommitdiff
path: root/libdecnumber/dpd/decimal128.h
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2009-06-01 05:28:42 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2009-06-01 05:28:42 +0000
commit3d5f43a06dd26a3ece3abb10b620b9d090d4a2d8 (patch)
treef028afdea12fb78bc6a465af6be09bc6bc49c844 /libdecnumber/dpd/decimal128.h
parentc4c8f6ce1b77ca228e33566f9e990cb775c65f5f (diff)
downloadgcc-3d5f43a06dd26a3ece3abb10b620b9d090d4a2d8.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148030 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libdecnumber/dpd/decimal128.h')
-rw-r--r--libdecnumber/dpd/decimal128.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libdecnumber/dpd/decimal128.h b/libdecnumber/dpd/decimal128.h
index 5214373cd1d..3c83c81fcaa 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