Sign in
mingw
/
mingw-w64
/
1da96b0e5bd67be27f54f524064319d74496c169
/
.
/
mingw-w64-crt
/
misc
/
difftime32.c
blob: 91eed3730cc3032731b978143dde1f43c3fb5771 [
file
] [
log
] [
blame
]
double
_difftime32
(
unsigned
int
_Time1
,
unsigned
int
_Time2
)
{
unsigned
int
r
=
_Time1
-
_Time2
;
if
(
r
>
_Time1
)
return
-((
double
)
(
_Time2
-
_Time1
));
return
(
double
)
r
;
}