summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/localtime_r.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/pbd/localtime_r.h')
-rw-r--r--libs/pbd/pbd/localtime_r.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/libs/pbd/pbd/localtime_r.h b/libs/pbd/pbd/localtime_r.h
index 2e7c7aa149..ad5b89d134 100644
--- a/libs/pbd/pbd/localtime_r.h
+++ b/libs/pbd/pbd/localtime_r.h
@@ -2,6 +2,12 @@
#define PBD_LOCALTIME_R
#include <time.h>
-extern struct tm *localtime_r(const time_t *const timep, struct tm *p_tm);
+#ifdef COMPILER_MSVC
+ #define localtime_r( _clock, _result ) \
+ ( *(_result) = *localtime( (_clock) ), \
+ (_result) )
+#else
+ extern struct tm *localtime_r(const time_t *const timep, struct tm *p_tm);
+#endif
#endif