Chromium Code Reviews| Index: runtime/bin/platform_android.cc | 
| diff --git a/runtime/bin/platform_android.cc b/runtime/bin/platform_android.cc | 
| index dddb4e19ebce7797f79cc3a776c0eee341c51554..3c44c04405a57634b17babfc1b4e328d27bc8377 100644 | 
| --- a/runtime/bin/platform_android.cc | 
| +++ b/runtime/bin/platform_android.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 |