diff options
author | Andreas Schwab <schwab@suse.de> | 2014-08-04 10:20:03 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2014-08-04 10:20:20 +0200 |
commit | dacdc867174924621311e79b78d4c887092d1291 (patch) | |
tree | 42d722c3dfe119178eb33436e338cd89091f1966 | |
parent | 41f725ff29c00d1ed400d13755d406ad3114fc89 (diff) | |
download | glibc-dacdc867174924621311e79b78d4c887092d1291.tar.gz glibc-dacdc867174924621311e79b78d4c887092d1291.tar.xz glibc-dacdc867174924621311e79b78d4c887092d1291.zip |
Fix missing <math_private.h> in ldbl-96 fma
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/ieee754/ldbl-96/s_fma.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 8d57bec1d0..290d87d8e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-08-04 Andreas Schwab <schwab@suse.de> + + * sysdeps/ieee754/ldbl-96/s_fma.c: Include <math_private.h>. + 2014-08-03 Mike Frysinger <vapier@gentoo.org> * stdlib/tst-setcontext.c (test_stack): Fix coding style. diff --git a/sysdeps/ieee754/ldbl-96/s_fma.c b/sysdeps/ieee754/ldbl-96/s_fma.c index a27102eff1..dcdae4d3a0 100644 --- a/sysdeps/ieee754/ldbl-96/s_fma.c +++ b/sysdeps/ieee754/ldbl-96/s_fma.c @@ -21,6 +21,7 @@ #include <math.h> #include <fenv.h> #include <ieee754.h> +#include <math_private.h> /* This implementation uses rounding to odd to avoid problems with double rounding. See a paper by Boldo and Melquiond: |