From beb387c4b293b36e4c6a5bf2036887998454a7d6 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Fri, 9 Jan 2015 13:15:01 +0100 Subject: [PATCH] Use consistently. --- ld128/e_acoshl.c | 2 +- ld128/e_atanhl.c | 2 +- ld128/e_coshl.c | 2 +- ld128/e_expl.c | 2 +- ld128/e_fmodl.c | 2 +- ld128/e_hypotl.c | 2 +- ld128/e_lgammal_r.c | 2 +- ld128/e_log10l.c | 2 +- ld128/e_log2l.c | 2 +- ld128/e_logl.c | 2 +- ld128/e_powl.c | 2 +- ld128/e_sinhl.c | 2 +- ld128/e_tgammal.c | 2 +- ld128/s_asinhl.c | 2 +- ld128/s_ceill.c | 2 +- ld128/s_erfl.c | 2 +- ld128/s_expm1l.c | 2 +- ld128/s_floorl.c | 2 +- ld128/s_log1pl.c | 2 +- ld128/s_modfl.c | 2 +- ld128/s_nextafterl.c | 2 +- ld128/s_nexttoward.c | 2 +- ld128/s_nexttowardf.c | 2 +- ld128/s_remquol.c | 2 +- ld128/s_tanhl.c | 3 ++- ld128/s_truncl.c | 2 +- 26 files changed, 27 insertions(+), 26 deletions(-) diff --git a/ld128/e_acoshl.c b/ld128/e_acoshl.c index dd8197f..dcd89fe 100644 --- a/ld128/e_acoshl.c +++ b/ld128/e_acoshl.c @@ -24,7 +24,7 @@ * acoshl(NaN) is NaN without signal. */ -#include +#include #include "math_private.h" diff --git a/ld128/e_atanhl.c b/ld128/e_atanhl.c index 51485b3..7cfa23b 100644 --- a/ld128/e_atanhl.c +++ b/ld128/e_atanhl.c @@ -28,7 +28,7 @@ * */ -#include +#include #include "math_private.h" diff --git a/ld128/e_coshl.c b/ld128/e_coshl.c index 3098c7b..0ebf079 100644 --- a/ld128/e_coshl.c +++ b/ld128/e_coshl.c @@ -46,7 +46,7 @@ * only coshl(0)=1 is exact for finite x. */ -#include +#include #include "math_private.h" diff --git a/ld128/e_expl.c b/ld128/e_expl.c index 0118d4f..4cfb137 100644 --- a/ld128/e_expl.c +++ b/ld128/e_expl.c @@ -73,7 +73,7 @@ /* Exponential function */ #include -#include +#include #include "math_private.h" diff --git a/ld128/e_fmodl.c b/ld128/e_fmodl.c index cb629dd..22a8920 100644 --- a/ld128/e_fmodl.c +++ b/ld128/e_fmodl.c @@ -16,7 +16,7 @@ * Method: shift and subtract */ -#include +#include #include "math_private.h" diff --git a/ld128/e_hypotl.c b/ld128/e_hypotl.c index ff642d9..b86a2d0 100644 --- a/ld128/e_hypotl.c +++ b/ld128/e_hypotl.c @@ -42,7 +42,7 @@ * than 1 ulps (units in the last place) */ -#include +#include #include "math_private.h" diff --git a/ld128/e_lgammal_r.c b/ld128/e_lgammal_r.c index 855ba4c..8408da2 100644 --- a/ld128/e_lgammal_r.c +++ b/ld128/e_lgammal_r.c @@ -69,7 +69,7 @@ * */ -#include +#include #include "math_private.h" diff --git a/ld128/e_log10l.c b/ld128/e_log10l.c index 9980203..6b05909 100644 --- a/ld128/e_log10l.c +++ b/ld128/e_log10l.c @@ -59,7 +59,7 @@ * */ -#include +#include #include "math_private.h" diff --git a/ld128/e_log2l.c b/ld128/e_log2l.c index fe15b82..53ced8c 100644 --- a/ld128/e_log2l.c +++ b/ld128/e_log2l.c @@ -58,7 +58,7 @@ * */ -#include +#include #include "math_private.h" diff --git a/ld128/e_logl.c b/ld128/e_logl.c index 8f2b7e6..7032fb9 100644 --- a/ld128/e_logl.c +++ b/ld128/e_logl.c @@ -60,7 +60,7 @@ * */ -#include +#include #include "math_private.h" diff --git a/ld128/e_powl.c b/ld128/e_powl.c index 1c73633..af09a6d 100644 --- a/ld128/e_powl.c +++ b/ld128/e_powl.c @@ -59,7 +59,7 @@ * */ -#include +#include #include "math_private.h" diff --git a/ld128/e_sinhl.c b/ld128/e_sinhl.c index a158d5a..56e441a 100644 --- a/ld128/e_sinhl.c +++ b/ld128/e_sinhl.c @@ -44,7 +44,7 @@ * only sinhl(0)=0 is exact for finite x. */ -#include +#include #include "math_private.h" diff --git a/ld128/e_tgammal.c b/ld128/e_tgammal.c index fb36209..dfa70d1 100644 --- a/ld128/e_tgammal.c +++ b/ld128/e_tgammal.c @@ -16,7 +16,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include +#include #include "math_private.h" diff --git a/ld128/s_asinhl.c b/ld128/s_asinhl.c index 12df814..ac6f481 100644 --- a/ld128/s_asinhl.c +++ b/ld128/s_asinhl.c @@ -21,7 +21,7 @@ * := signl(x)*log1pl(|x| + x^2/(1 + sqrtl(1+x^2))) */ -#include +#include #include "math_private.h" diff --git a/ld128/s_ceill.c b/ld128/s_ceill.c index 9ee833c..1edd12d 100644 --- a/ld128/s_ceill.c +++ b/ld128/s_ceill.c @@ -19,7 +19,7 @@ * Inexact flag raised if x not equal to ceil(x). */ -#include +#include #include "math_private.h" diff --git a/ld128/s_erfl.c b/ld128/s_erfl.c index c6b3d4d..dd35b4b 100644 --- a/ld128/s_erfl.c +++ b/ld128/s_erfl.c @@ -91,7 +91,7 @@ * erfc/erf(NaN) is NaN */ -#include +#include #include "math_private.h" diff --git a/ld128/s_expm1l.c b/ld128/s_expm1l.c index eb58b3e..76e8090 100644 --- a/ld128/s_expm1l.c +++ b/ld128/s_expm1l.c @@ -54,7 +54,7 @@ */ #include -#include +#include #include "math_private.h" diff --git a/ld128/s_floorl.c b/ld128/s_floorl.c index a7d8140..6360c0b 100644 --- a/ld128/s_floorl.c +++ b/ld128/s_floorl.c @@ -19,7 +19,7 @@ * Inexact flag raised if x not equal to floor(x). */ -#include +#include #include "math_private.h" diff --git a/ld128/s_log1pl.c b/ld128/s_log1pl.c index 673bf6a..5bc86a6 100644 --- a/ld128/s_log1pl.c +++ b/ld128/s_log1pl.c @@ -54,7 +54,7 @@ * IEEE -1, 8 100000 1.9e-34 4.3e-35 */ -#include +#include #include "math_private.h" diff --git a/ld128/s_modfl.c b/ld128/s_modfl.c index 0ca4a35..5fdf2c0 100644 --- a/ld128/s_modfl.c +++ b/ld128/s_modfl.c @@ -20,7 +20,7 @@ * No exception. */ -#include +#include #include "math_private.h" diff --git a/ld128/s_nextafterl.c b/ld128/s_nextafterl.c index 7a3bbf7..a45bede 100644 --- a/ld128/s_nextafterl.c +++ b/ld128/s_nextafterl.c @@ -17,7 +17,7 @@ * Special cases: */ -#include +#include #include "math_private.h" diff --git a/ld128/s_nexttoward.c b/ld128/s_nexttoward.c index adbbb22..0ae65af 100644 --- a/ld128/s_nexttoward.c +++ b/ld128/s_nexttoward.c @@ -17,8 +17,8 @@ * Special cases: */ -#include #include +#include #include "math_private.h" diff --git a/ld128/s_nexttowardf.c b/ld128/s_nexttowardf.c index e63a165..6f8ccdf 100644 --- a/ld128/s_nexttowardf.c +++ b/ld128/s_nexttowardf.c @@ -10,7 +10,7 @@ * ==================================================== */ -#include +#include #include "math_private.h" diff --git a/ld128/s_remquol.c b/ld128/s_remquol.c index ee7a713..67c89a4 100644 --- a/ld128/s_remquol.c +++ b/ld128/s_remquol.c @@ -14,7 +14,7 @@ #include #include -#include +#include #include #include "math_private.h" diff --git a/ld128/s_tanhl.c b/ld128/s_tanhl.c index 78707a0..b852164 100644 --- a/ld128/s_tanhl.c +++ b/ld128/s_tanhl.c @@ -50,7 +50,8 @@ * only tanhl(0)=0 is exact for finite argument. */ -#include "math.h" +#include + #include "math_private.h" static const long double one = 1.0, two = 2.0, tiny = 1.0e-4900L; diff --git a/ld128/s_truncl.c b/ld128/s_truncl.c index fce5b6c..6bb3fb5 100644 --- a/ld128/s_truncl.c +++ b/ld128/s_truncl.c @@ -24,7 +24,7 @@ #include #include -#include +#include #include #include "math_private.h"