[compiler-rt] Add missing includes of <errno.h> and <iterator>

The compilation failed due to undeclared identifiers: distance, errno,
and EINTR.

llvm-svn: 290343
This commit is contained in:
Krzysztof Parzyszek 2016-12-22 15:31:21 +00:00
parent 728926ac59
commit bd0455defa
1 changed files with 2 additions and 0 deletions

View File

@ -3,7 +3,9 @@
#include "xray_interface_internal.h"
#include <atomic>
#include <cstdint>
#include <errno.h>
#include <fcntl.h>
#include <iterator>
#include <limits>
#include <tuple>
#include <unistd.h>