Sign in
mingw
/
mingw-w64
/
5df3e8b84c3f16028fc468aed7793fee24374360
/
.
/
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
}