Sign in
mingw
/
mingw-w64
/
d6ae92cdcf5ac2562db2b099d2cfc19c8f95989c
/
.
/
mingw-w64-crt
/
misc
/
mktime.c
blob: e3336033551ec956a7cfe49c3535540126578656 [
file
]
#include
<time.h>
time_t
__cdecl mktime
(
struct
tm
*
_Tm
)
{
#ifdef
_USE_32BIT_TIME_T
return
_mktime32
(
_Tm
);
#else
return
_mktime64
(
_Tm
);
#endif
}