| Index: runtime/bin/platform_linux.cc
|
| ===================================================================
|
| --- runtime/bin/platform_linux.cc (revision 18775)
|
| +++ runtime/bin/platform_linux.cc (working copy)
|
| @@ -2,11 +2,14 @@
|
| // 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/platform.h"
|
|
|
| -#include <signal.h>
|
| -#include <string.h>
|
| -#include <unistd.h>
|
| +#include <signal.h> // NOLINT
|
| +#include <string.h> // NOLINT
|
| +#include <unistd.h> // NOLINT
|
|
|
|
|
| bool Platform::Initialize() {
|
| @@ -65,3 +68,5 @@
|
| void Platform::FreeEnvironment(char** env, intptr_t count) {
|
| delete[] env;
|
| }
|
| +
|
| +#endif // defined(TARGET_OS_LINUX)
|
|
|