Chromium Code Reviews| Index: runtime/bin/stdio_android.cc |
| diff --git a/runtime/bin/stdio_android.cc b/runtime/bin/stdio_android.cc |
| index b14dad823f7e3e5b42aa71d1468d5bb64395f5b8..12c87c96f32e79c9fb69f5229e0218a98e843510 100644 |
| --- a/runtime/bin/stdio_android.cc |
| +++ b/runtime/bin/stdio_android.cc |
| @@ -18,12 +18,10 @@ namespace dart { |
| namespace bin { |
| int Stdin::ReadByte() { |
| - FDUtils::SetBlocking(STDIN_FILENO); |
| int c = getchar(); |
| if (c == EOF) { |
| c = -1; |
| } |
| - FDUtils::SetNonBlocking(STDIN_FILENO); |
| return c; |
| } |