diff options
author | Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> | 2017-03-20 10:07:35 -0300 |
---|---|---|
committer | Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> | 2017-05-15 10:09:08 -0300 |
commit | 33d523d7f8c8ffdeecd03df452d80bfda3bc25d4 (patch) | |
tree | f2659ac3e10b912e28d5d2fe8b08a1bc3bfb96b4 /ChangeLog | |
parent | fcee5905d341fe975f7786e72c831ada1c8fa78b (diff) | |
download | glibc-33d523d7f8c8ffdeecd03df452d80bfda3bc25d4.tar glibc-33d523d7f8c8ffdeecd03df452d80bfda3bc25d4.tar.gz glibc-33d523d7f8c8ffdeecd03df452d80bfda3bc25d4.tar.bz2 glibc-33d523d7f8c8ffdeecd03df452d80bfda3bc25d4.zip |
float128: Include math-finite.h for _Float128
All the declarations in math-finite.h are macroized by floating-point
type. This patch includes it for float128 and protects the
declarations of functions that need not be declared for float128.
* math/math.h: Include bits/math-finite.h for float128.
(__MATH_DECLARING_FLOATN): Define to control declaration of
float128 functions.
* math/bits/math-finite.h (pow10): Do not declare for float128.
(gamma): Likewise.
(scalb): Likewise.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,12 @@ +2017-05-14 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> + + * math/math.h: Include bits/math-finite.h for float128. + (__MATH_DECLARING_FLOATN): Define to control declaration of + float128 functions. + * math/bits/math-finite.h (pow10): Do not declare for float128. + (gamma): Likewise. + (scalb): Likewise. + 2017-05-14 Paul E. Murphy <murphyp@linux.vnet.ibm.com> Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> |