提交 33f395ea 编写于 作者: B Bruce Momjian

Cast _timezone to int from time_t for Cygwin.

上级 90e1ac92
...@@ -220,7 +220,11 @@ do { \ ...@@ -220,7 +220,11 @@ do { \
#if !defined(__CYGWIN__) && !defined(WIN32) #if !defined(__CYGWIN__) && !defined(WIN32)
#define TIMEZONE_GLOBAL timezone #define TIMEZONE_GLOBAL timezone
#else #else
#if defined(WIN32)
#define TIMEZONE_GLOBAL _timezone #define TIMEZONE_GLOBAL _timezone
#else
#define TIMEZONE_GLOBAL ((int)_timezone) /* time_t on Cywgin */
#endif
#define tzname _tzname /* should be in time.h? */ #define tzname _tzname /* should be in time.h? */
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册