diff options
author | Cedric Venet <cedric.venet@laposte.net> | 2008-08-24 11:56:40 +0000 |
---|---|---|
committer | Cedric Venet <cedric.venet@laposte.net> | 2008-08-24 11:56:40 +0000 |
commit | 0f7b5666a2c4cf78f0493e9e7297fc605ee0602c (patch) | |
tree | 3db144e1b30848999396894b0a292e7c785d386a /llvm/lib/Support/raw_ostream.cpp | |
parent | ab18099c98a5503f0562b2ddfcfde8b8fe7ce94f (diff) | |
download | bcm5719-llvm-0f7b5666a2c4cf78f0493e9e7297fc605ee0602c.tar.gz bcm5719-llvm-0f7b5666a2c4cf78f0493e9e7297fc605ee0602c.zip |
Updating VC++ project.
Adding one include file and correct one declaration from class to struct in order to make llvm compile on VC2005.
llvm-svn: 55279
Diffstat (limited to 'llvm/lib/Support/raw_ostream.cpp')
-rw-r--r-- | llvm/lib/Support/raw_ostream.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index b9beac2869a..008f85603ee 100644 --- a/llvm/lib/Support/raw_ostream.cpp +++ b/llvm/lib/Support/raw_ostream.cpp @@ -26,6 +26,7 @@ #if defined(_MSC_VER) #include <io.h> +#include <fcntl.h> #ifndef STDIN_FILENO # define STDIN_FILENO 0 #endif |