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