Index: runtime/bin/platform_macos.cc |
diff --git a/runtime/bin/platform_macos.cc b/runtime/bin/platform_macos.cc |
index 54b48d6a071392933d182398390e9c6526c08d1f..091d093feda8ef947461c0cdd1ac707a5d680701 100644 |
--- a/runtime/bin/platform_macos.cc |
+++ b/runtime/bin/platform_macos.cc |
@@ -120,6 +120,10 @@ char* Platform::ResolveExecutablePath() { |
return canon_path; |
} |
+void Platform::Exit(int exit_code) { |
+ exit(exit_code); |
+} |
+ |
} // namespace bin |
} // namespace dart |