Sign in
mingw
/
mingw-w64
/
dd2ce979cd46e4dbfe2a3f67a03fef5f8a1a9760
/
.
/
mingw-w64-crt
/
misc
/
_mkgmtime.c
blob: 42077b040b979c58ef943bd5a2755a170e0c0026 [
file
]
#include
<time.h>
time_t
__cdecl _mkgmtime
(
struct
tm
*
_Tm
)
{
#ifdef
_USE_32BIT_TIME_T
return
_mkgmtime32
(
_Tm
);
#else
return
_mkgmtime64
(
_Tm
);
#endif
}