Chromium Code Reviews| Index: runtime/bin/platform_linux.cc |
| diff --git a/runtime/bin/platform_linux.cc b/runtime/bin/platform_linux.cc |
| index 8469a21cb22b7a56719da87cc5387fbbb3125bee..24cbfd3ebf58bd840cfffdfb17784544ffb332c7 100644 |
| --- a/runtime/bin/platform_linux.cc |
| +++ b/runtime/bin/platform_linux.cc |
| @@ -77,6 +77,10 @@ char* Platform::ResolveExecutablePath() { |
| return File::LinkTarget("/proc/self/exe"); |
| } |
| +void Platform::Exit(int exit_code) { |
| + exit(exit_code); |
| +} |
| + |
| } // namespace bin |
| } // namespace dart |