mirror of
https://github.com/openssl/openssl.git
synced 2024-12-11 11:04:03 +08:00
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:
parent
d1186c30a2
commit
424aa35245
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user