Index: runtime/vm/os_win.cc |
=================================================================== |
--- runtime/vm/os_win.cc (revision 18775) |
+++ runtime/vm/os_win.cc (working copy) |
@@ -2,10 +2,13 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
+#include "vm/globals.h" |
+#if defined(TARGET_OS_WINDOWS) |
+ |
#include "vm/os.h" |
-#include <malloc.h> |
-#include <time.h> |
+#include <malloc.h> // NOLINT |
+#include <time.h> // NOLINT |
#include "platform/utils.h" |
#include "platform/assert.h" |
@@ -290,3 +293,5 @@ |
} |
} // namespace dart |
+ |
+#endif // defined(TARGET_OS_WINDOWS) |