diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/w_acos_template.c | 1 | ||||
-rw-r--r-- | math/w_acosh_template.c | 1 | ||||
-rw-r--r-- | math/w_asin_template.c | 1 | ||||
-rw-r--r-- | math/w_atanh_template.c | 1 | ||||
-rw-r--r-- | math/w_cosh_template.c | 1 | ||||
-rw-r--r-- | math/w_exp10_template.c | 1 | ||||
-rw-r--r-- | math/w_exp2_template.c | 1 | ||||
-rw-r--r-- | math/w_exp_template.c | 1 | ||||
-rw-r--r-- | math/w_fmod_template.c | 1 | ||||
-rw-r--r-- | math/w_hypot_template.c | 1 | ||||
-rw-r--r-- | math/w_j0_template.c | 1 | ||||
-rw-r--r-- | math/w_j1_template.c | 1 | ||||
-rw-r--r-- | math/w_jn_template.c | 1 | ||||
-rw-r--r-- | math/w_lgamma_r_template.c | 1 | ||||
-rw-r--r-- | math/w_lgamma_template.c | 1 | ||||
-rw-r--r-- | math/w_log10_template.c | 1 | ||||
-rw-r--r-- | math/w_log2_template.c | 1 | ||||
-rw-r--r-- | math/w_log_template.c | 1 | ||||
-rw-r--r-- | math/w_pow_template.c | 1 | ||||
-rw-r--r-- | math/w_remainder_template.c | 1 | ||||
-rw-r--r-- | math/w_sinh_template.c | 1 | ||||
-rw-r--r-- | math/w_sqrt_template.c | 1 | ||||
-rw-r--r-- | math/w_tgamma_template.c | 1 |
23 files changed, 23 insertions, 0 deletions
diff --git a/math/w_acos_template.c b/math/w_acos_template.c index ea0e7d4f02..b1de997a78 100644 --- a/math/w_acos_template.c +++ b/math/w_acos_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_acosh_template.c b/math/w_acosh_template.c index 31f63dbd96..276da87b39 100644 --- a/math/w_acosh_template.c +++ b/math/w_acosh_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_asin_template.c b/math/w_asin_template.c index 41c610245f..48a1010102 100644 --- a/math/w_asin_template.c +++ b/math/w_asin_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_atanh_template.c b/math/w_atanh_template.c index 771af5aff8..543edaf134 100644 --- a/math/w_atanh_template.c +++ b/math/w_atanh_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_cosh_template.c b/math/w_cosh_template.c index b912e6e6a5..6b26dd5ddb 100644 --- a/math/w_cosh_template.c +++ b/math/w_cosh_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_exp10_template.c b/math/w_exp10_template.c index 8f7997dd35..f63950b55e 100644 --- a/math/w_exp10_template.c +++ b/math/w_exp10_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_exp2_template.c b/math/w_exp2_template.c index 76577c7fca..9c817b60bc 100644 --- a/math/w_exp2_template.c +++ b/math/w_exp2_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_exp_template.c b/math/w_exp_template.c index c0a4ec5be3..450597a2b7 100644 --- a/math/w_exp_template.c +++ b/math/w_exp_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_fmod_template.c b/math/w_fmod_template.c index 06d7c75661..271f2aad67 100644 --- a/math/w_fmod_template.c +++ b/math/w_fmod_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_hypot_template.c b/math/w_hypot_template.c index 9298add756..f29ecb1e9a 100644 --- a/math/w_hypot_template.c +++ b/math/w_hypot_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_j0_template.c b/math/w_j0_template.c index f49874fa10..92b6958367 100644 --- a/math/w_j0_template.c +++ b/math/w_j0_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_j1_template.c b/math/w_j1_template.c index 6d1058f7e0..47dcbcd381 100644 --- a/math/w_j1_template.c +++ b/math/w_j1_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_jn_template.c b/math/w_jn_template.c index fd138359be..32912e278f 100644 --- a/math/w_jn_template.c +++ b/math/w_jn_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_lgamma_r_template.c b/math/w_lgamma_r_template.c index 977d1b5fc4..5610db167c 100644 --- a/math/w_lgamma_r_template.c +++ b/math/w_lgamma_r_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_lgamma_template.c b/math/w_lgamma_template.c index a60413d937..13829af382 100644 --- a/math/w_lgamma_template.c +++ b/math/w_lgamma_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_log10_template.c b/math/w_log10_template.c index 92735f0340..6cdaf3616f 100644 --- a/math/w_log10_template.c +++ b/math/w_log10_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_log2_template.c b/math/w_log2_template.c index a80b287da6..7bce7aec1b 100644 --- a/math/w_log2_template.c +++ b/math/w_log2_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_log_template.c b/math/w_log_template.c index 3f9830c196..f1d0534714 100644 --- a/math/w_log_template.c +++ b/math/w_log_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_pow_template.c b/math/w_pow_template.c index 50431b985f..19c25fb88f 100644 --- a/math/w_pow_template.c +++ b/math/w_pow_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_remainder_template.c b/math/w_remainder_template.c index 4ecf10d360..aba43d63ae 100644 --- a/math/w_remainder_template.c +++ b/math/w_remainder_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_sinh_template.c b/math/w_sinh_template.c index 7a147ded9d..b364e27002 100644 --- a/math/w_sinh_template.c +++ b/math/w_sinh_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_sqrt_template.c b/math/w_sqrt_template.c index f97074f062..5fae302382 100644 --- a/math/w_sqrt_template.c +++ b/math/w_sqrt_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> diff --git a/math/w_tgamma_template.c b/math/w_tgamma_template.c index 277a8377e3..017dbeba09 100644 --- a/math/w_tgamma_template.c +++ b/math/w_tgamma_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include <errno.h> # include <fenv.h> # include <math.h> # include <math_private.h> |