summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libquadmath/ChangeLog5
-rw-r--r--libquadmath/quadmath.h8
2 files changed, 13 insertions, 0 deletions
diff --git a/libquadmath/ChangeLog b/libquadmath/ChangeLog
index 15c0739319d..f04c70180b5 100644
--- a/libquadmath/ChangeLog
+++ b/libquadmath/ChangeLog
@@ -1,3 +1,8 @@
+2013-03-06 Shakthi Kannan <shakthimaan@gmail.com>
+
+ PR libquadmath/55473
+ * quadmath.h: Add 'extern "C"' block for C++ use.
+
2013-02-19 Jakub Jelinek <jakub@redhat.com>
PR libquadmath/56379
diff --git a/libquadmath/quadmath.h b/libquadmath/quadmath.h
index 863fe440b23..aa9ef51b391 100644
--- a/libquadmath/quadmath.h
+++ b/libquadmath/quadmath.h
@@ -23,6 +23,10 @@ Boston, MA 02110-1301, USA. */
#include <stdlib.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* Define the complex type corresponding to __float128
("_Complex __float128" is not allowed) */
typedef _Complex float __attribute__((mode(TC))) __complex128;
@@ -189,4 +193,8 @@ __quadmath_nth (conjq (__complex128 __z))
return __extension__ ~__z;
}
+#ifdef __cplusplus
+}
+#endif
+
#endif