diff options
Diffstat (limited to 'src/strptime.cc')
-rw-r--r-- | src/strptime.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strptime.cc b/src/strptime.cc index b31954f4..b9d485d2 100644 --- a/src/strptime.cc +++ b/src/strptime.cc @@ -13,7 +13,7 @@ // limitations under the License. -#ifdef WIN32 +#ifdef _WIN32 // Implement strptime under windows #include "strptime.h" @@ -186,4 +186,4 @@ char* strptime(const char *buf, const char *fmt, struct tm *tm) { return _strptime(buf, fmt, tm); } -#endif // WIN32 +#endif // _WIN32 |