From d81f90ccd0109de9ed78aeeb8d86e2c6d4600690 Mon Sep 17 00:00:00 2001 From: Wilco Dijkstra Date: Wed, 3 Jun 2015 15:36:34 +0100 Subject: This patch renames all uses of __isinf*, __isnan*, __finite* and __signbit* to use standard C99 macros. This has no effect on generated code. --- math/w_scalblnl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'math/w_scalblnl.c') diff --git a/math/w_scalblnl.c b/math/w_scalblnl.c index dd23b4b5ae..2c4980b31c 100644 --- a/math/w_scalblnl.c +++ b/math/w_scalblnl.c @@ -23,12 +23,12 @@ long double __w_scalblnl (long double x, long int n) { - if (!__finitel (x) || x == 0.0L) + if (!isfinite (x) || x == 0.0L) return x; x = __scalblnl (x, n); - if (!__finitel (x) || x == 0.0L) + if (!isfinite (x) || x == 0.0L) __set_errno (ERANGE); return x; -- cgit v1.2.3