Commit 50a1d302 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

emulate gmtime_r/localtime_r by gmtime_s/localtime_s on Windows

parent 69c1b9b7
...@@ -26,8 +26,9 @@ ...@@ -26,8 +26,9 @@
/* #define NO_GMTIME_R */ /* #define NO_GMTIME_R */
#ifdef _WIN32 #ifdef _WIN32
/* unfortunately Win32 platform do not provide gmtime_r/localtime_r */ /* Win32 platform do not provide gmtime_r/localtime_r; emulate them using gmtime_s/localtime_s */
#define NO_GMTIME_R #define gmtime_r(tp, tm) ((gmtime_s((tm), (tp)) == 0) ? (tp) : NULL)
#define localtime_r(tp, tm) ((localtime_s((tm), (tp)) == 0) ? (tp) : NULL)
#endif #endif
/* timegm(3) */ /* timegm(3) */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment