From 0fbf9618bb595a93a83d034f04bb63e7881d8bf3 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 4 Nov 2015 13:07:47 -0800 Subject: [PATCH] Fix Mac adb build. The Mac doesn't have , and it looks like the canonical place for struct winsize is anyway. system/core/adb/commandline.cpp:44:10: fatal error: 'termio.h' file not found #include Bug: http://b/19734542 Change-Id: I3bfbf58cdb9b582f3b7e2c9ef0977613001cd3ac --- adb/commandline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adb/commandline.cpp b/adb/commandline.cpp index 2aa922de1..c5eabcffc 100644 --- a/adb/commandline.cpp +++ b/adb/commandline.cpp @@ -41,7 +41,7 @@ #if !defined(_WIN32) #include -#include +#include #include #include #endif