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
a79de8aa
Commit
a79de8aa
authored
Dec 13, 2012
by
Austin English
Committed by
Alexandre Julliard
Dec 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Implement _ftol in msvcrt instead of forwarding to ntdll.
parent
b234f72c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
math.c
dlls/msvcrt/math.c
+9
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+3
-3
No files found.
dlls/msvcrt/math.c
View file @
a79de8aa
...
...
@@ -629,6 +629,15 @@ double CDECL _CItanh(void)
return
MSVCRT_tanh
(
x
);
}
/*********************************************************************
* _ftol (MSVCRT.@)
*/
LONGLONG
CDECL
MSVCRT__ftol
(
void
)
{
FPU_DOUBLE
(
x
);
return
(
LONGLONG
)
x
;
}
#endif
/* defined(__GNUC__) && defined(__i386__) */
/*********************************************************************
...
...
dlls/msvcrt/msvcrt.spec
View file @
a79de8aa
...
...
@@ -453,9 +453,9 @@
@ cdecl _ftime32_s(ptr) MSVCRT__ftime32_s
@ cdecl _ftime64(ptr) MSVCRT__ftime64
@ cdecl _ftime64_s(ptr) MSVCRT__ftime64_s
@ cdecl -
ret64 _ftol() ntdll.
_ftol
@ cdecl -
ret64 _ftol2() ntdll.
_ftol
@ cdecl -
ret64 _ftol2_sse() ntdll.
_ftol #FIXME: SSE variant should be implemented
@ cdecl -
arch=i386 -ret64 _ftol() MSVCRT_
_ftol
@ cdecl -
arch=i386 -ret64 _ftol2() MSVCRT_
_ftol
@ cdecl -
arch=i386 -ret64 _ftol2_sse() MSVCRT_
_ftol #FIXME: SSE variant should be implemented
# stub _ftol2_sse_excpt
@ cdecl _fullpath(ptr str long)
# stub _fullpath_dbg(ptr str long long str long)
...
...
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