Fix RHEL 6 build with missing cerrno and some other Include What You Use warnings.

Differential revision: https://reviews.llvm.org/D26171

llvm-svn: 285710
This commit is contained in:
Eugene Zelenko 2016-11-01 17:11:10 +00:00
parent acf6c82de2
commit a0b67bbed9
1 changed files with 6 additions and 3 deletions

View File

@ -8,10 +8,13 @@
//===----------------------------------------------------------------------===//
#include "lldb/Host/posix/MainLoopPosix.h"
#include <vector>
#include "lldb/Core/Error.h"
#include <algorithm>
#include <cassert>
#include <cerrno>
#include <csignal>
#include <vector>
#include <sys/select.h>
using namespace lldb;
using namespace lldb_private;