| Index: runtime/bin/platform_win.cc
|
| ===================================================================
|
| --- runtime/bin/platform_win.cc (revision 18775)
|
| +++ runtime/bin/platform_win.cc (working copy)
|
| @@ -2,6 +2,9 @@
|
| // 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_WINDOWS)
|
| +
|
| #include "bin/platform.h"
|
| #include "bin/log.h"
|
| #include "bin/socket.h"
|
| @@ -60,3 +63,5 @@
|
| for (int i = 0; i < count; i++) free(env[i]);
|
| delete[] env;
|
| }
|
| +
|
| +#endif // defined(TARGET_OS_WINDOWS)
|
|
|