msvcrt: Standardize on using a comparison operator to ensure we return 0 or 1.
This commit is contained in:
parent
202e71769e
commit
0b5b54e9f4
|
@ -1217,7 +1217,7 @@ double CDECL MSVCRT__copysign(double num, double sign)
|
|||
*/
|
||||
int CDECL MSVCRT__finite(double num)
|
||||
{
|
||||
return (isfinite(num)?1:0); /* See comment for _isnan() */
|
||||
return isfinite(num) != 0; /* See comment for _isnan() */
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
|
@ -1246,7 +1246,7 @@ INT CDECL MSVCRT__isnan(double num)
|
|||
/* Some implementations return -1 for true(glibc), msvcrt/crtdll return 1.
|
||||
* Do the same, as the result may be used in calculations
|
||||
*/
|
||||
return isnan(num) ? 1 : 0;
|
||||
return isnan(num) != 0;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
|
|
Loading…
Reference in New Issue