Sign in
mingw
/
mingw-w64
/
c0ba3fad1fe6031bf35d890e7deb4f09352610a6
/
.
/
mingw-w64-crt
/
misc
/
ctime.c
blob: a7edcf663b3f60c142f23965c76ad902882b2874 [
file
] [
log
] [
blame
]
#include
<time.h>
char
*
__cdecl ctime
(
const
time_t
*
_Time
)
{
#ifdef
_USE_32BIT_TIME_T
return
_ctime32
(
_Time
);
#else
return
_ctime64
(
_Time
);
#endif
}