aboutsummaryrefslogtreecommitdiff
path: root/include/floatformat.h
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2015-02-19 12:18:45 +0000
committerPedro Alves <palves@gcc.gnu.org>2015-02-19 12:18:45 +0000
commit49d8897995ee841fa8269bc099035c3ac8fa576c (patch)
tree3a4209bd6aa9da2a72d364ca8b414a70ac1a53b4 /include/floatformat.h
parent4cfe4a12748012881f26a8a655d68f80c7eee7b7 (diff)
downloadgcc-49d8897995ee841fa8269bc099035c3ac8fa576c.zip
gcc-49d8897995ee841fa8269bc099035c3ac8fa576c.tar.gz
gcc-49d8897995ee841fa8269bc099035c3ac8fa576c.tar.bz2
floatformat.h: Wrap in extern "C"
Just like libiberty.h. So that C++ programs, such as GDB when built as a C++ program, can use it. include/ChangeLog: 2015-02-19 Pedro Alves <palves@redhat.com> * floatformat.h [__cplusplus]: Wrap in extern "C". From-SVN: r220812
Diffstat (limited to 'include/floatformat.h')
-rw-r--r--include/floatformat.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/floatformat.h b/include/floatformat.h
index 04db61a..e15e07c 100644
--- a/include/floatformat.h
+++ b/include/floatformat.h
@@ -23,6 +23,10 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
#include "ansidecl.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* A floatformat consists of a sign bit, an exponent and a mantissa. Once the
bytes are concatenated according to the byteorder flag, then each of those
fields is contiguous. We number the bits with 0 being the most significant
@@ -149,4 +153,8 @@ floatformat_from_double (const struct floatformat *, const double *, void *);
extern int
floatformat_is_valid (const struct floatformat *fmt, const void *from);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* defined (FLOATFORMAT_H) */