| /* struct tm * __cdecl _localtime64 (const __time64_t *); */ |
| errno_t __cdecl _localtime64_s (struct tm *, const __time64_t *); |
| static errno_t __cdecl _int_localtime64_s (struct tm *, const __time64_t *); |
| static errno_t __cdecl _stub (struct tm *, const __time64_t *); |
| errno_t __cdecl (*__MINGW_IMP_SYMBOL(_localtime64_s))(struct tm *, const __time64_t *) = |
| _stub (struct tm *ptm, const __time64_t *pt) |
| errno_t __cdecl (*f)(struct tm *, const __time64_t *) = __MINGW_IMP_SYMBOL(_localtime64_s); |
| f = (errno_t __cdecl (*)(struct tm *, const __time64_t *)) |
| GetProcAddress (__mingw_get_msvcrt_handle (), "_localtime64_s"); |
| __MINGW_IMP_SYMBOL(_localtime64_s) = f; |
| _localtime64_s (struct tm *ptm, const __time64_t *pt) |
| _int_localtime64_s (struct tm *ptm, const __time64_t *pt) |
| memset (ptm, 0xff, sizeof (*ptm)); |
| if ((ltm = _localtime64 (pt)) == NULL) |