diff options
author | Elliott Hughes <enh@google.com> | 2015-04-16 16:47:02 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-04-16 16:47:02 -0700 |
commit | a2f2e56796fef024c7374d033bd7d34af71fdf5a (patch) | |
tree | 1f3914961b94a7e62019c7853d0496a15923a1eb /adb/commandline.cpp | |
parent | 34d68c2b574a21917d9e8d69a24ab863cc9f6910 (diff) | |
download | system_core-a2f2e56796fef024c7374d033bd7d34af71fdf5a.zip system_core-a2f2e56796fef024c7374d033bd7d34af71fdf5a.tar.gz system_core-a2f2e56796fef024c7374d033bd7d34af71fdf5a.tar.bz2 |
Move sysdeps_win32 to C++.
Change-Id: I27ca41b64d62bb3611b3a39a5c3bb4377d0773bc
Diffstat (limited to 'adb/commandline.cpp')
-rw-r--r-- | adb/commandline.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/adb/commandline.cpp b/adb/commandline.cpp index 34efefe..19a2fee 100644 --- a/adb/commandline.cpp +++ b/adb/commandline.cpp @@ -249,11 +249,9 @@ int usage() #if defined(_WIN32) -// Implemented in sysdeps_win32.c. -extern "C" { +// Implemented in sysdeps_win32.cpp. void stdin_raw_init(int fd); void stdin_raw_restore(int fd); -} #else static termios g_saved_terminal_state; |