mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
emulate gmtime_r/localtime_r by gmtime_s/localtime_s on Windows
This commit is contained in:
+3
-2
@@ -26,8 +26,9 @@
|
||||
/* #define NO_GMTIME_R */
|
||||
|
||||
#ifdef _WIN32
|
||||
/* unfortunately Win32 platform do not provide gmtime_r/localtime_r */
|
||||
#define NO_GMTIME_R
|
||||
/* Win32 platform do not provide gmtime_r/localtime_r; emulate them using gmtime_s/localtime_s */
|
||||
#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
|
||||
|
||||
/* timegm(3) */
|
||||
|
||||
Reference in New Issue
Block a user