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
4df7ced7
Commit
4df7ced7
authored
Jul 12, 2017
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120: Add fallback implementation of asinh.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e495e25a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
math.c
dlls/msvcrt/math.c
+3
-4
No files found.
dlls/msvcrt/math.c
View file @
4df7ced7
...
...
@@ -2873,8 +2873,8 @@ double CDECL MSVCR120_asinh(double x)
#ifdef HAVE_ASINH
return
asinh
(
x
);
#else
FIXME
(
"not implemented
\n
"
);
return
0
.
0
;
if
(
!
isfinite
(
x
*
x
+
1
))
return
log
(
2
)
+
log
(
x
);
return
log
(
x
+
sqrt
(
x
*
x
+
1
))
;
#endif
}
...
...
@@ -2886,8 +2886,7 @@ float CDECL MSVCR120_asinhf(float x)
#ifdef HAVE_ASINHF
return
asinhf
(
x
);
#else
FIXME
(
"not implemented
\n
"
);
return
0
.
0
f
;
return
MSVCR120_asinh
(
x
);
#endif
}
...
...
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