Index: runtime/bin/log_linux.cc |
=================================================================== |
--- runtime/bin/log_linux.cc (revision 18775) |
+++ runtime/bin/log_linux.cc (working copy) |
@@ -2,9 +2,12 @@ |
// 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 "platform/globals.h" |
+#if defined(TARGET_OS_LINUX) |
+ |
#include "bin/log.h" |
-#include <stdio.h> |
+#include <stdio.h> // NOLINT |
void Log::VPrint(const char* format, va_list args) { |
vfprintf(stdout, format, args); |
@@ -16,3 +19,4 @@ |
fflush(stdout); |
} |
+#endif // defined(TARGET_OS_LINUX) |