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
b0c49654
Commit
b0c49654
authored
Jun 14, 2000
by
Committed by
Alexandre Julliard
Jun 14, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added difftime function.
parent
30855917
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
crtdll.spec
dlls/crtdll/crtdll.spec
+1
-1
crtdll_main.c
dlls/crtdll/crtdll_main.c
+11
-0
No files found.
dlls/crtdll/crtdll.spec
View file @
b0c49654
...
...
@@ -359,7 +359,7 @@ init CRTDLL_Init
@ cdecl cos(double) cos
@ cdecl cosh(double) cosh
@ cdecl ctime(ptr) ctime
@
stub
difftime
@
cdecl difftime(long long) CRTDLL_
difftime
@ cdecl div(long long) div
@ cdecl exit(long) CRTDLL_exit
@ cdecl exp(double) exp
...
...
dlls/crtdll/crtdll_main.c
View file @
b0c49654
...
...
@@ -615,6 +615,17 @@ time_t __cdecl CRTDLL_time(time_t *timeptr)
}
/*********************************************************************
* difftime (CRTDLL.357)
*/
double
__cdecl
CRTDLL_difftime
(
time_t
time1
,
time_t
time2
)
{
double
timediff
;
timediff
=
(
double
)(
time1
-
time2
);
return
timediff
;
}
/*********************************************************************
* clock (CRTDLL.350)
*/
clock_t
__cdecl
CRTDLL_clock
(
void
)
...
...
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