diff options
Diffstat (limited to 'src/time64.c')
| -rw-r--r-- | src/time64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/time64.c b/src/time64.c index cfbe7ac..218088e 100644 --- a/src/time64.c +++ b/src/time64.c | |||
| @@ -443,7 +443,7 @@ void copy_TM64_to_tm(const struct TM *src, struct tm *dest) { | |||
| 443 | } | 443 | } |
| 444 | 444 | ||
| 445 | 445 | ||
| 446 | #ifndef HAVE_LOCALTIME_R | 446 | #if !defined(HAVE_LOCALTIME_R) && !defined(_WIN32) |
| 447 | /* Simulate localtime_r() to the best of our ability */ | 447 | /* Simulate localtime_r() to the best of our ability */ |
| 448 | static struct tm * fake_localtime_r(const time_t *time, struct tm *result) { | 448 | static struct tm * fake_localtime_r(const time_t *time, struct tm *result) { |
| 449 | const struct tm *static_result = localtime(time); | 449 | const struct tm *static_result = localtime(time); |
| @@ -462,7 +462,7 @@ static struct tm * fake_localtime_r(const time_t *time, struct tm *result) { | |||
| 462 | #endif | 462 | #endif |
| 463 | 463 | ||
| 464 | 464 | ||
| 465 | #ifndef HAVE_GMTIME_R | 465 | #if !defined(HAVE_GMTIME_R) && !defined(_WIN32) |
| 466 | /* Simulate gmtime_r() to the best of our ability */ | 466 | /* Simulate gmtime_r() to the best of our ability */ |
| 467 | static struct tm * fake_gmtime_r(const time_t *time, struct tm *result) { | 467 | static struct tm * fake_gmtime_r(const time_t *time, struct tm *result) { |
| 468 | const struct tm *static_result = gmtime(time); | 468 | const struct tm *static_result = gmtime(time); |
