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
8fab2422
Commit
8fab2422
authored
Sep 03, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Sep 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Export fabsf on ARM and x86_64.
parent
4f27b78f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
math.c
dlls/msvcrt/math.c
+8
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-0
No files found.
dlls/msvcr110/msvcr110.spec
View file @
8fab2422
...
...
@@ -2011,7 +2011,7 @@
@ cdecl exp(double) msvcrt.exp
@ cdecl -arch=arm,x86_64 expf(float) msvcrt.expf
@ cdecl fabs(double) msvcrt.fabs
@
stub -arch=arm
fabsf
@
cdecl -arch=arm,x86_64 fabsf(float) msvcrt.
fabsf
@ cdecl fclose(ptr) msvcrt.fclose
@ cdecl feof(ptr) msvcrt.feof
@ cdecl ferror(ptr) msvcrt.ferror
...
...
dlls/msvcrt/math.c
View file @
8fab2422
...
...
@@ -289,6 +289,14 @@ float CDECL MSVCRT_ceilf( float x )
}
/*********************************************************************
* fabsf (MSVCRT.@)
*/
float
CDECL
MSVCRT_fabsf
(
float
x
)
{
return
fabsf
(
x
);
}
/*********************************************************************
* floorf (MSVCRT.@)
*/
float
CDECL
MSVCRT_floorf
(
float
x
)
...
...
dlls/msvcrt/msvcrt.spec
View file @
8fab2422
...
...
@@ -1276,6 +1276,7 @@
@ cdecl exp(double) MSVCRT_exp
@ cdecl -arch=arm,x86_64 expf(float) MSVCRT_expf
@ cdecl fabs(double) MSVCRT_fabs
@ cdecl -arch=arm,x86_64 fabsf(float) MSVCRT_fabsf
@ cdecl fclose(ptr) MSVCRT_fclose
@ cdecl feof(ptr) MSVCRT_feof
@ cdecl ferror(ptr) MSVCRT_ferror
...
...
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