diff options
author | palves <palves@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-02-19 12:18:45 +0000 |
---|---|---|
committer | palves <palves@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-02-19 12:18:45 +0000 |
commit | 5221952dcdaf0d5c1a2ee1081ffead817f54099a (patch) | |
tree | 3a4209bd6aa9da2a72d364ca8b414a70ac1a53b4 /include | |
parent | dee58864666a9154efc206e4baa428a24658fb83 (diff) | |
download | gcc-5221952dcdaf0d5c1a2ee1081ffead817f54099a.tar.gz |
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".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@220812 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/floatformat.h | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index dab727fe710..689873b26b3 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2015-02-19 Pedro Alves <palves@redhat.com> + + * floatformat.h [__cplusplus]: Wrap in extern "C". + 2015-02-04 Jakub Jelinek <jakub@redhat.com> * dwarf2.h (enum dwarf_source_language): Add DW_LANG_Fortran03 diff --git a/include/floatformat.h b/include/floatformat.h index 04db61a2659..e15e07c2249 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) */ |