X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=include%2Ffloatformat.h;h=ce8d6d4add8e69f32519762059bfb24a64de3830;hb=4d91c2a4677b90802c8d369190927921bf8ee97d;hp=6b55986413c87c8f0459a8af9dbd565b7281b222;hpb=b90efa5b79ac1524ec260f8eb89d1be37e0219a7;p=deliverable%2Fbinutils-gdb.git diff --git a/include/floatformat.h b/include/floatformat.h index 6b55986413..ce8d6d4add 100644 --- a/include/floatformat.h +++ b/include/floatformat.h @@ -1,5 +1,5 @@ /* IEEE floating point support declarations, for GDB, the GNU Debugger. - Copyright (C) 1991-2015 Free Software Foundation, Inc. + Copyright (C) 1991-2020 Free Software Foundation, Inc. This file is part of GDB. @@ -22,6 +22,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 @@ -148,4 +152,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) */