diff options
-rw-r--r-- | src/ninja.cc | 2 | ||||
-rw-r--r-- | src/util.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ninja.cc b/src/ninja.cc index a599c6e..4e750f4 100644 --- a/src/ninja.cc +++ b/src/ninja.cc @@ -709,7 +709,7 @@ reload: printf("\n"); int count = (int)globals.state->paths_.size(); int buckets = -#ifdef _WIN32 +#ifdef _MSC_VER (int)globals.state->paths_.comp.bucket_size; #else (int)globals.state->paths_.bucket_count(); @@ -68,12 +68,14 @@ const char* SpellcheckString(const string& text, ...); /// Removes all Ansi escape codes (http://www.termsys.demon.co.uk/vtansi.htm). string StripAnsiEscapeCodes(const string& in); -#ifdef _WIN32 +#ifdef _MSC_VER #define snprintf _snprintf #define fileno _fileno #define unlink _unlink #define chdir _chdir +#endif +#ifdef _WIN32 /// Convert the value returned by GetLastError() into a string. string GetLastErrorString(); #endif |