summaryrefslogtreecommitdiff
path: root/Build/source/libs/mpfr/mpfr-src/src/scale2.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/mpfr/mpfr-src/src/scale2.c')
-rw-r--r--Build/source/libs/mpfr/mpfr-src/src/scale2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/libs/mpfr/mpfr-src/src/scale2.c b/Build/source/libs/mpfr/mpfr-src/src/scale2.c
index 5081c135456..bcc8ec002fe 100644
--- a/Build/source/libs/mpfr/mpfr-src/src/scale2.c
+++ b/Build/source/libs/mpfr/mpfr-src/src/scale2.c
@@ -30,9 +30,9 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
double
mpfr_scale2 (double d, int exp)
{
-#if _GMP_IEEE_FLOATS
+#if _MPFR_IEEE_FLOATS
{
- union ieee_double_extract x;
+ union mpfr_ieee_double_extract x;
if (MPFR_UNLIKELY (d == 1.0))
{
@@ -57,7 +57,7 @@ mpfr_scale2 (double d, int exp)
}
return x.d;
}
-#else /* _GMP_IEEE_FLOATS */
+#else /* _MPFR_IEEE_FLOATS */
{
double factor;
@@ -87,5 +87,5 @@ mpfr_scale2 (double d, int exp)
}
return d;
}
-#endif
+#endif /* _MPFR_IEEE_FLOATS */
}