Skip to content

Commit bc8dd92

Browse files
committed
Use isfinite() instead of non-standard finite() function.
The finite() function got standardized under the name isfinite(). Its use is therefore discouraged.
1 parent 13d1162 commit bc8dd92

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ld128/e_lgammal_r.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ lgammal_r(long double x, int *signgamp)
763763

764764
*signgamp = 1;
765765

766-
if (! finite (x))
766+
if (!isfinite (x))
767767
return x * x;
768768

769769
if (x == 0.0L)

0 commit comments

Comments
 (0)