Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
06f205d0
Commit
06f205d0
authored
May 13, 2021
by
Piotr Caban
Committed by
Alexandre Julliard
May 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120: Add feupdateenv implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cdcfba9a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
msvcr120_app.spec
dlls/msvcr120_app/msvcr120_app.spec
+1
-1
math.c
dlls/msvcrt/math.c
+10
-0
No files found.
dlls/msvcr120/msvcr120.spec
View file @
06f205d0
...
...
@@ -2155,7 +2155,7 @@
@ cdecl fesetexceptflag(ptr long)
@ cdecl fesetround(long)
@ cdecl fetestexcept(long)
@
stub feupdateenv
@
cdecl feupdateenv(ptr)
@ cdecl fflush(ptr)
@ cdecl fgetc(ptr)
@ cdecl fgetpos(ptr ptr)
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
06f205d0
...
...
@@ -1821,7 +1821,7 @@
@ cdecl fesetexceptflag(ptr long) msvcr120.fesetexceptflag
@ cdecl fesetround(long) msvcr120.fesetround
@ cdecl fetestexcept(long) msvcr120.fetestexcept
@
stub
feupdateenv
@
cdecl feupdateenv(ptr) msvcr120.
feupdateenv
@ cdecl fflush(ptr) msvcr120.fflush
@ cdecl fgetc(ptr) msvcr120.fgetc
@ cdecl fgetpos(ptr ptr) msvcr120.fgetpos
...
...
dlls/msvcrt/math.c
View file @
06f205d0
...
...
@@ -2227,6 +2227,16 @@ int CDECL fegetenv(fenv_t *env)
}
/*********************************************************************
* feupdateenv (MSVCR120.@)
*/
int
CDECL
feupdateenv
(
const
fenv_t
*
env
)
{
fenv_t
set
=
*
env
;
set
.
_Fe_stat
|=
_statusfp
();
return
fesetenv
(
&
set
);
}
/*********************************************************************
* fetestexcept (MSVCR120.@)
*/
int
CDECL
fetestexcept
(
int
flags
)
...
...
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