forked from OSchip/llvm-project
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
This commit is contained in:
parent
29a8eba974
commit
b8ad01559f
|
@ -19,6 +19,7 @@
|
|||
#include "lldb/Host/windows/windows.h"
|
||||
#else
|
||||
#include <sys/ioctl.h>
|
||||
#include <termios.h>
|
||||
#endif
|
||||
|
||||
#include "llvm/Support/ConvertUTF.h"
|
||||
|
|
Loading…
Reference in New Issue