Sign in
mingw
/
mingw-w64
/
91674baa6cf191dbae796aca686b2b572ed4e4bc
/
.
/
mingw-w64-crt
/
misc
/
gmtime.c
blob: 56d0abcc31e394f38b819ff58eb1329aced3a084 [
file
] [
log
] [
blame
]
#include
<time.h>
struct
tm
*
__cdecl gmtime
(
const
time_t
*
_Time
)
{
#ifdef
_USE_32BIT_TIME_T
return
_gmtime32
(
_Time
);
#else
return
_gmtime64
(
_Time
);
#endif
}