| Index: runtime/bin/process_macos.cc
|
| diff --git a/runtime/bin/process_macos.cc b/runtime/bin/process_macos.cc
|
| index bf81a8c31f6759ea6b61de315dd7df8772a5e504..f6949582e229ea5012979376a11e8ee4339349c4 100644
|
| --- a/runtime/bin/process_macos.cc
|
| +++ b/runtime/bin/process_macos.cc
|
| @@ -7,7 +7,7 @@
|
|
|
| #include "bin/process.h"
|
|
|
| -#if !defined(TARGET_OS_IOS)
|
| +#if !TARGET_OS_IOS
|
| #include <crt_externs.h> // NOLINT
|
| #endif
|
| #include <errno.h> // NOLINT
|
| @@ -451,7 +451,7 @@ class ProcessStarter {
|
| ReportChildError();
|
| }
|
|
|
| -#if !defined(TARGET_OS_IOS)
|
| +#if !TARGET_OS_IOS
|
| if (program_environment_ != NULL) {
|
| // On MacOS you have to do a bit of magic to get to the
|
| // environment strings.
|
|
|