forked from OSchip/llvm-project
G M suggestion: conditionally include files on _WIN32.
llvm-svn: 195045
This commit is contained in:
parent
fbeb63c0d1
commit
f16f037060
|
@ -19,8 +19,10 @@
|
||||||
#ifdef __sun__
|
#ifdef __sun__
|
||||||
#define rename solaris_headers_are_broken
|
#define rename solaris_headers_are_broken
|
||||||
#endif
|
#endif
|
||||||
|
#if !defined(_WIN32)
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#endif // defined(_WIN32)
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
_LIBCPP_BEGIN_NAMESPACE_STD
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
||||||
|
|
Loading…
Reference in New Issue