Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0b5b54e9
Commit
0b5b54e9
authored
Dec 01, 2013
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Standardize on using a comparison operator to ensure we return 0 or 1.
parent
202e7176
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
math.c
dlls/msvcrt/math.c
+2
-2
No files found.
dlls/msvcrt/math.c
View file @
0b5b54e9
...
...
@@ -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
;
}
/*********************************************************************
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment