Skip to content
Snippets Groups Projects
Commit 9c25ce1e authored by deuce's avatar deuce
Browse files

Use _tzname on mingw32 too.

parent 11b754ec
No related branches found
No related tags found
No related merge requests found
......@@ -277,7 +277,7 @@ DLLEXPORT int DLLCALL get_errno(void);
#define SLEEP(x) Sleep(x)
#define popen _popen
#define pclose _pclose
#if !defined(_MSC_VER) /* Conflicts with latest (Windows 2003 R2) PlatformSDK include/time.h */
#if !(defined(_MSC_VER) || defined(__MSVCRT__)) /* Conflicts with latest (Windows 2003 R2) PlatformSDK include/time.h */
#define tzname _tzname
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment