about summary refs log tree commit diff
path: root/math/w_sinh.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_sinh.c')
-rw-r--r--math/w_sinh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_sinh.c b/math/w_sinh.c
index 34ad2d8624..51daf2ff35 100644
--- a/math/w_sinh.c
+++ b/math/w_sinh.c
@@ -21,7 +21,7 @@ double
 __sinh (double x)
 {
 	double z = __ieee754_sinh (x);
-	if (__builtin_expect (!__finite (z), 0) && __finite (x)
+	if (__builtin_expect (!isfinite (z), 0) && isfinite (x)
 	    && _LIB_VERSION != _IEEE_)
 		return __kernel_standard (x, x, 25); /* sinh overflow */