1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

Fix Windows build.

llvm-svn: 239279
This commit is contained in:
Peter Collingbourne 2015-06-08 02:43:32 +00:00
parent 2a2ba76ed8
commit 08d6c7d7dd

View File

@ -24,7 +24,11 @@
#include "llvm/Support/ToolOutputFile.h"
#include "llvm/Support/raw_ostream.h"
#if !defined(_MSC_VER) && !defined(__MINGW32__)
#include <unistd.h>
#else
#include <io.h>
#endif
using namespace llvm;