blob: ca95c0880723ca418d87b8b9d281ea35927fadc7 [file] [log] [blame]
#define __CRT__NO_INLINE
#include <time.h>
/* FIXME: Relying on _USE_32BIT_TIME_T, which is a user-macro,
during CRT compilation is plainly broken. Need an appropriate
implementation to provide users the ability of compiling the
CRT only with 32-bit time_t behavior. */
time_t __cdecl _mkgmtime(struct tm *_Tm)
{
#ifdef _USE_32BIT_TIME_T
return _mkgmtime32(_Tm);
#else
return _mkgmtime64(_Tm);
#endif
}