Change 64-bit time type for windows

Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3248)
This commit is contained in:
Jon Spillett 2017-04-19 16:21:29 +10:00 committed by Rich Salz
parent d1186c30a2
commit 424aa35245
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ static int idx;
* coverage.
*/
#if defined(_WIN32) && defined(_TIME64_T_DEFINED)
time64_t _time64(time64_t *t) TIME_IMPL(t)
__time64_t _time64(__time64_t *t) TIME_IMPL(t)
#endif
#if !defined(_WIN32) || !defined(_MSC_VER)
time_t time(time_t *t) TIME_IMPL(t)

View File

@ -484,7 +484,7 @@ static int idx;
* coverage.
*/
#if defined(_WIN32) && defined(_TIME64_T_DEFINED)
time64_t _time64(time64_t *t) TIME_IMPL(t)
__time64_t _time64(__time64_t *t) TIME_IMPL(t)
#endif
#if !defined(_WIN32) || !defined(_MSC_VER)
time_t time(time_t *t) TIME_IMPL(t)