diff options
author | Zack Weinberg <zackw@panix.com> | 2018-03-11 14:09:30 -0400 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2018-03-11 14:20:13 -0400 |
commit | d3da750d019d458355af602936d01901ba14f11c (patch) | |
tree | 2637043a335b2cf25cc3850b37029442a24d364b /sysdeps/ieee754 | |
parent | a5df0318ef30a4dcff3fa2cb82265f641813d9ea (diff) | |
download | glibc-d3da750d019d458355af602936d01901ba14f11c.zip glibc-d3da750d019d458355af602936d01901ba14f11c.tar.gz glibc-d3da750d019d458355af602936d01901ba14f11c.tar.bz2 |
nldbl-compat.c: Include math.h before nldbl-compat.h.
Jeff Law noticed that native PowerPC builds were broken by my having
made math_ldbl_opt.h not include math.h. nldbl-compat.c formerly got
math.h via libioP.h and math_ldbl_opt.h, *without* __NO_LONG_DOUBLE_MATH;
after my change it got it via nldbl-compat.h *with* __NO_LONG_DOUBLE_MATH,
but __NO_LONG_DOUBLE_MATH mode is forbidden on hosts that define
__HAVE_DISTINCT_FLOAT128, so the build breaks. This is the quick fix.
* sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Include math.h
before nldbl-compat.h.
Diffstat (limited to 'sysdeps/ieee754')
-rw-r--r-- | sysdeps/ieee754/ldbl-opt/nldbl-compat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-compat.c b/sysdeps/ieee754/ldbl-opt/nldbl-compat.c index bf54090..ffb5fab 100644 --- a/sysdeps/ieee754/ldbl-opt/nldbl-compat.c +++ b/sysdeps/ieee754/ldbl-opt/nldbl-compat.c @@ -20,6 +20,7 @@ #include <stdarg.h> #include <stdio.h> #include <libioP.h> +#include <math.h> #include <wchar.h> #include <printf.h> #include <monetary.h> |