aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
Diffstat (limited to 'math')
-rw-r--r--math/fromfp.h1
-rw-r--r--math/math-narrow.h1
-rw-r--r--math/s_cexp_template.c1
-rw-r--r--math/s_csin_template.c1
-rw-r--r--math/s_csinh_template.c1
-rw-r--r--math/s_ctan_template.c1
-rw-r--r--math/s_ctanh_template.c1
-rw-r--r--math/s_iseqsig_template.c1
-rw-r--r--math/w_acos_compat.c1
-rw-r--r--math/w_acosf_compat.c1
-rw-r--r--math/w_acosl_compat.c1
-rw-r--r--math/w_asin_compat.c1
-rw-r--r--math/w_asinf_compat.c1
-rw-r--r--math/w_asinl_compat.c1
-rw-r--r--math/w_ilogb_template.c1
-rw-r--r--math/w_j0_compat.c1
-rw-r--r--math/w_j0f_compat.c1
-rw-r--r--math/w_j0l_compat.c1
-rw-r--r--math/w_j1_compat.c1
-rw-r--r--math/w_j1f_compat.c1
-rw-r--r--math/w_j1l_compat.c1
-rw-r--r--math/w_jn_compat.c1
-rw-r--r--math/w_jnf_compat.c1
-rw-r--r--math/w_llogb_template.c1
-rw-r--r--math/w_log10_compat.c1
-rw-r--r--math/w_log10f_compat.c1
-rw-r--r--math/w_log10l_compat.c1
-rw-r--r--math/w_log2_compat.c1
-rw-r--r--math/w_log2f_compat.c1
-rw-r--r--math/w_log2l_compat.c1
-rw-r--r--math/w_log_compat.c1
-rw-r--r--math/w_logf_compat.c1
-rw-r--r--math/w_logl_compat.c1
33 files changed, 33 insertions, 0 deletions
diff --git a/math/fromfp.h b/math/fromfp.h
index 9d102a635f..718a5120d8 100644
--- a/math/fromfp.h
+++ b/math/fromfp.h
@@ -22,6 +22,7 @@
#include <math.h>
#include <math-barriers.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <stdbool.h>
#include <stdint.h>
diff --git a/math/math-narrow.h b/math/math-narrow.h
index c4065e88f7..242b22c8e2 100644
--- a/math/math-narrow.h
+++ b/math/math-narrow.h
@@ -26,6 +26,7 @@
#include <ieee754.h>
#include <math-barriers.h>
#include <math_private.h>
+#include <fenv_private.h>
/* Carry out a computation using round-to-odd. The computation is
EXPR; the union type in which to store the result is UNION and the
diff --git a/math/s_cexp_template.c b/math/s_cexp_template.c
index 5fdab1e5ac..766681a2bb 100644
--- a/math/s_cexp_template.c
+++ b/math/s_cexp_template.c
@@ -21,6 +21,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-underflow.h>
#include <float.h>
diff --git a/math/s_csin_template.c b/math/s_csin_template.c
index 5f95e92ee0..4581852b17 100644
--- a/math/s_csin_template.c
+++ b/math/s_csin_template.c
@@ -21,6 +21,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-underflow.h>
#include <float.h>
diff --git a/math/s_csinh_template.c b/math/s_csinh_template.c
index 95f28c2b66..ad599d67ea 100644
--- a/math/s_csinh_template.c
+++ b/math/s_csinh_template.c
@@ -21,6 +21,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-underflow.h>
#include <float.h>
diff --git a/math/s_ctan_template.c b/math/s_ctan_template.c
index ab11c25299..bd9247c98d 100644
--- a/math/s_ctan_template.c
+++ b/math/s_ctan_template.c
@@ -21,6 +21,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-underflow.h>
#include <float.h>
diff --git a/math/s_ctanh_template.c b/math/s_ctanh_template.c
index bd1292239f..7b1dd9aa67 100644
--- a/math/s_ctanh_template.c
+++ b/math/s_ctanh_template.c
@@ -21,6 +21,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-underflow.h>
#include <float.h>
diff --git a/math/s_iseqsig_template.c b/math/s_iseqsig_template.c
index a4d28d778d..b3a86aea50 100644
--- a/math/s_iseqsig_template.c
+++ b/math/s_iseqsig_template.c
@@ -20,6 +20,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <stdbool.h>
#include <fix-fp-int-compare-invalid.h>
diff --git a/math/w_acos_compat.c b/math/w_acos_compat.c
index 079fdb271f..ff6d163c20 100644
--- a/math/w_acos_compat.c
+++ b/math/w_acos_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-double.h>
diff --git a/math/w_acosf_compat.c b/math/w_acosf_compat.c
index efc09edb2a..0f38a20564 100644
--- a/math/w_acosf_compat.c
+++ b/math/w_acosf_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-float.h>
diff --git a/math/w_acosl_compat.c b/math/w_acosl_compat.c
index d630a10a40..e24fb03b5f 100644
--- a/math/w_acosl_compat.c
+++ b/math/w_acosl_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-ldouble.h>
diff --git a/math/w_asin_compat.c b/math/w_asin_compat.c
index c55913d304..43ea34a7dc 100644
--- a/math/w_asin_compat.c
+++ b/math/w_asin_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-double.h>
diff --git a/math/w_asinf_compat.c b/math/w_asinf_compat.c
index 1fc18c2e91..58c6dcaf27 100644
--- a/math/w_asinf_compat.c
+++ b/math/w_asinf_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-float.h>
diff --git a/math/w_asinl_compat.c b/math/w_asinl_compat.c
index 6741138f74..c7ea8358af 100644
--- a/math/w_asinl_compat.c
+++ b/math/w_asinl_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-ldouble.h>
diff --git a/math/w_ilogb_template.c b/math/w_ilogb_template.c
index 3e45f33b9c..fd41dc2627 100644
--- a/math/w_ilogb_template.c
+++ b/math/w_ilogb_template.c
@@ -20,6 +20,7 @@
#include <errno.h>
#include <limits.h>
#include <math_private.h>
+#include <fenv_private.h>
/* wrapper ilogb */
int
diff --git a/math/w_j0_compat.c b/math/w_j0_compat.c
index a298353ac4..f8ce3f8d3c 100644
--- a/math/w_j0_compat.c
+++ b/math/w_j0_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-double.h>
diff --git a/math/w_j0f_compat.c b/math/w_j0f_compat.c
index 41d3a10147..0bee2fb011 100644
--- a/math/w_j0f_compat.c
+++ b/math/w_j0f_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-float.h>
diff --git a/math/w_j0l_compat.c b/math/w_j0l_compat.c
index e436cb278b..9d2c5d46a4 100644
--- a/math/w_j0l_compat.c
+++ b/math/w_j0l_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-ldouble.h>
diff --git a/math/w_j1_compat.c b/math/w_j1_compat.c
index 3b014b8cfa..11a56889f1 100644
--- a/math/w_j1_compat.c
+++ b/math/w_j1_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-double.h>
diff --git a/math/w_j1f_compat.c b/math/w_j1f_compat.c
index 5cfb6b9cd5..e59d954626 100644
--- a/math/w_j1f_compat.c
+++ b/math/w_j1f_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-float.h>
diff --git a/math/w_j1l_compat.c b/math/w_j1l_compat.c
index fb0adc68cb..400040a0a0 100644
--- a/math/w_j1l_compat.c
+++ b/math/w_j1l_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-ldouble.h>
diff --git a/math/w_jn_compat.c b/math/w_jn_compat.c
index 8b546ba4a2..a169c7b210 100644
--- a/math/w_jn_compat.c
+++ b/math/w_jn_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-double.h>
diff --git a/math/w_jnf_compat.c b/math/w_jnf_compat.c
index 86386700de..11769e2e26 100644
--- a/math/w_jnf_compat.c
+++ b/math/w_jnf_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-float.h>
diff --git a/math/w_llogb_template.c b/math/w_llogb_template.c
index 8315ccd072..76f2557677 100644
--- a/math/w_llogb_template.c
+++ b/math/w_llogb_template.c
@@ -20,6 +20,7 @@
#include <errno.h>
#include <limits.h>
#include <math_private.h>
+#include <fenv_private.h>
long int
M_DECL_FUNC (__llogb) (FLOAT x)
diff --git a/math/w_log10_compat.c b/math/w_log10_compat.c
index 87c155d256..996139dc7c 100644
--- a/math/w_log10_compat.c
+++ b/math/w_log10_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-double.h>
diff --git a/math/w_log10f_compat.c b/math/w_log10f_compat.c
index fd1861a6ab..9cee2185d2 100644
--- a/math/w_log10f_compat.c
+++ b/math/w_log10f_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-float.h>
diff --git a/math/w_log10l_compat.c b/math/w_log10l_compat.c
index d2387c225a..b4b404822e 100644
--- a/math/w_log10l_compat.c
+++ b/math/w_log10l_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-ldouble.h>
diff --git a/math/w_log2_compat.c b/math/w_log2_compat.c
index 61e7170ae1..7b34a991e6 100644
--- a/math/w_log2_compat.c
+++ b/math/w_log2_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-double.h>
diff --git a/math/w_log2f_compat.c b/math/w_log2f_compat.c
index 7b4b545c81..c9d99be07a 100644
--- a/math/w_log2f_compat.c
+++ b/math/w_log2f_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-float.h>
diff --git a/math/w_log2l_compat.c b/math/w_log2l_compat.c
index ba74ed2576..c40016532d 100644
--- a/math/w_log2l_compat.c
+++ b/math/w_log2l_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-ldouble.h>
diff --git a/math/w_log_compat.c b/math/w_log_compat.c
index 5413b8e8df..4ed4eea6e8 100644
--- a/math/w_log_compat.c
+++ b/math/w_log_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-double.h>
diff --git a/math/w_logf_compat.c b/math/w_logf_compat.c
index 9810d30c52..7e8c124c4d 100644
--- a/math/w_logf_compat.c
+++ b/math/w_logf_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-float.h>
diff --git a/math/w_logl_compat.c b/math/w_logl_compat.c
index 991251a7c5..f47d792a16 100644
--- a/math/w_logl_compat.c
+++ b/math/w_logl_compat.c
@@ -19,6 +19,7 @@
#include <fenv.h>
#include <math.h>
#include <math_private.h>
+#include <fenv_private.h>
#include <math-svid-compat.h>
#include <libm-alias-ldouble.h>