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
09e4fc83
Commit
09e4fc83
authored
Jan 27, 2017
by
Daniel Lehman
Committed by
Alexandre Julliard
Jan 27, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Implement nan.
Signed-off-by:
Daniel Lehman
<
dlehman@esri.com
>
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b924ccb6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
12 deletions
+29
-12
api-ms-win-crt-math-l1-1-0.spec
...pi-ms-win-crt-math-l1-1-0/api-ms-win-crt-math-l1-1-0.spec
+3
-3
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+3
-3
msvcr120_app.spec
dlls/msvcr120_app/msvcr120_app.spec
+3
-3
math.c
dlls/msvcrt/math.c
+17
-0
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+3
-3
No files found.
dlls/api-ms-win-crt-math-l1-1-0/api-ms-win-crt-math-l1-1-0.spec
View file @
09e4fc83
...
...
@@ -288,9 +288,9 @@
@ cdecl lroundl(double) ucrtbase.lroundl
@ cdecl modf(double ptr) ucrtbase.modf
@ cdecl -arch=arm,x86_64 modff(float ptr) ucrtbase.modff
@
stub
nan
@
stub
nanf
@
stub
nanl
@
cdecl nan(str) ucrtbase.
nan
@
cdecl nanf(str) ucrtbase.
nanf
@
cdecl nanl(str) ucrtbase.
nanl
@ cdecl nearbyint(double) ucrtbase.nearbyint
@ cdecl nearbyintf(float) ucrtbase.nearbyintf
@ cdecl nearbyintl(double) ucrtbase.nearbyintl
...
...
dlls/msvcr120/msvcr120.spec
View file @
09e4fc83
...
...
@@ -2293,9 +2293,9 @@
@ cdecl memset(ptr long long) MSVCRT_memset
@ cdecl modf(double ptr) MSVCRT_modf
@ cdecl -arch=arm,x86_64 modff(float ptr) MSVCRT_modff
@
stub
nan
@
stub
nanf
@
stub nanl
@
cdecl nan(str) MSVCR120_
nan
@
cdecl nanf(str) MSVCR120_
nanf
@
cdecl nanl(str) MSVCR120_nan
@ cdecl nearbyint(double) MSVCRT_nearbyint
@ cdecl nearbyintf(float) MSVCRT_nearbyintf
@ cdecl nearbyintl(double) MSVCRT_nearbyint
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
09e4fc83
...
...
@@ -1956,9 +1956,9 @@
@ cdecl memset(ptr long long) msvcr120.memset
@ cdecl modf(double ptr) msvcr120.modf
@ cdecl -arch=arm,x86_64 modff(float ptr) msvcr120.modff
@
stub
nan
@
stub
nanf
@
stub
nanl
@
cdecl nan(str) msvcr120.
nan
@
cdecl nanf(str) msvcr120.
nanf
@
cdecl nanl(str) msvcr120.
nanl
@ cdecl nearbyint(double) msvcr120.nearbyint
@ cdecl nearbyintf(float) msvcr120.nearbyintf
@ cdecl nearbyintl(double) msvcr120.nearbyintl
...
...
dlls/msvcrt/math.c
View file @
09e4fc83
...
...
@@ -2901,3 +2901,20 @@ LDOUBLE CDECL MSVCR120_lgammal(LDOUBLE x)
{
return
MSVCR120_lgamma
(
x
);
}
/*********************************************************************
* nan (MSVCR120.@)
*/
double
CDECL
MSVCR120_nan
(
const
char
*
tagp
)
{
/* Windows ignores input (MSDN) */
return
NAN
;
}
/*********************************************************************
* nanf (MSVCR120.@)
*/
float
CDECL
MSVCR120_nanf
(
const
char
*
tagp
)
{
return
NAN
;
}
dlls/ucrtbase/ucrtbase.spec
View file @
09e4fc83
...
...
@@ -2429,9 +2429,9 @@
@ cdecl memset(ptr long long) MSVCRT_memset
@ cdecl modf(double ptr) MSVCRT_modf
@ cdecl -arch=arm,x86_64 modff(float ptr) MSVCRT_modff
@
stub
nan
@
stub
nanf
@
stub nanl
@
cdecl nan(str) MSVCR120_
nan
@
cdecl nanf(str) MSVCR120_
nanf
@
cdecl nanl(str) MSVCR120_nan
@ cdecl nearbyint(double) MSVCRT_nearbyint
@ cdecl nearbyintf(float) MSVCRT_nearbyintf
@ cdecl nearbyintl(double) MSVCRT_nearbyint
...
...
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