| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #if !defined(DART_IO_DISABLED) | |
| 6 | |
| 7 #include "platform/globals.h" | 5 #include "platform/globals.h" |
| 8 #if defined(HOST_OS_FUCHSIA) | 6 #if defined(HOST_OS_FUCHSIA) |
| 9 | 7 |
| 10 #include "bin/stdio.h" | 8 #include "bin/stdio.h" |
| 11 | 9 |
| 12 namespace dart { | 10 namespace dart { |
| 13 namespace bin { | 11 namespace bin { |
| 14 | 12 |
| 15 bool Stdin::ReadByte(int* byte) { | 13 bool Stdin::ReadByte(int* byte) { |
| 16 UNIMPLEMENTED(); | 14 UNIMPLEMENTED(); |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 47 |
| 50 bool Stdout::AnsiSupported(intptr_t fd, bool* supported) { | 48 bool Stdout::AnsiSupported(intptr_t fd, bool* supported) { |
| 51 UNIMPLEMENTED(); | 49 UNIMPLEMENTED(); |
| 52 return false; | 50 return false; |
| 53 } | 51 } |
| 54 | 52 |
| 55 } // namespace bin | 53 } // namespace bin |
| 56 } // namespace dart | 54 } // namespace dart |
| 57 | 55 |
| 58 #endif // defined(HOST_OS_FUCHSIA) | 56 #endif // defined(HOST_OS_FUCHSIA) |
| 59 | |
| 60 #endif // !defined(DART_IO_DISABLED) | |
| OLD | NEW |