| Index: runtime/vm/virtual_memory_macos.cc
|
| ===================================================================
|
| --- runtime/vm/virtual_memory_macos.cc (revision 18775)
|
| +++ runtime/vm/virtual_memory_macos.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_MACOS)
|
| +
|
| #include "vm/virtual_memory.h"
|
|
|
| -#include <sys/mman.h>
|
| -#include <unistd.h>
|
| +#include <sys/mman.h> // NOLINT
|
| +#include <unistd.h> // NOLINT
|
|
|
| #include "platform/assert.h"
|
| #include "platform/utils.h"
|
| @@ -96,3 +99,5 @@
|
| }
|
|
|
| } // namespace dart
|
| +
|
| +#endif // defined(TARGET_OS_MACOS)
|
|
|