From b8ad01559f14c64662586b8458e2756673ed8a66 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Tue, 24 Jan 2017 14:05:23 +0000 Subject: [PATCH] Include termios.h for definition of struct winsize On android API level 9 the header does not get included transitively. Include it directly. As far as I can see, all non-windows platforms should have this header. If that turns out to be incorrect, we can add some ifdefs around that. llvm-svn: 292931 --- lldb/source/Host/common/File.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/source/Host/common/File.cpp b/lldb/source/Host/common/File.cpp index 4eb9ae15f069..bdb034fbba61 100644 --- a/lldb/source/Host/common/File.cpp +++ b/lldb/source/Host/common/File.cpp @@ -19,6 +19,7 @@ #include "lldb/Host/windows/windows.h" #else #include +#include #endif #include "llvm/Support/ConvertUTF.h"