mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-04-04 17:47:14 +02:00
Use isfinite() instead of non-standard finite() function.
The finite() function got standardized under the name isfinite(). Its use is therefore discouraged.
This commit is contained in:
parent
13d11626ba
commit
bc8dd927a3
1 changed files with 1 additions and 1 deletions
|
@ -763,7 +763,7 @@ lgammal_r(long double x, int *signgamp)
|
|||
|
||||
*signgamp = 1;
|
||||
|
||||
if (! finite (x))
|
||||
if (!isfinite (x))
|
||||
return x * x;
|
||||
|
||||
if (x == 0.0L)
|
||||
|
|
Loading…
Add table
Reference in a new issue