diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-02 22:20:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-02 22:20:04 +0000 |
commit | c25d8a7e303b2f03d781bf81563a3c83077519a3 (patch) | |
tree | a4f9fc4328c7ea551dc5ae94559e9b280f419dd7 /clang/lib/Lex/Preprocessor.cpp | |
parent | bab4417e05eb2eda983c82936f85d6b5d2caf7f2 (diff) | |
download | bcm5719-llvm-c25d8a7e303b2f03d781bf81563a3c83077519a3.tar.gz bcm5719-llvm-c25d8a7e303b2f03d781bf81563a3c83077519a3.zip |
improve compatibility with GCC 4.4, patch by Michel Salim (PR3697)
llvm-svn: 65884
Diffstat (limited to 'clang/lib/Lex/Preprocessor.cpp')
-rw-r--r-- | clang/lib/Lex/Preprocessor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp index 26777d9170b..2a9fa0a85b5 100644 --- a/clang/lib/Lex/Preprocessor.cpp +++ b/clang/lib/Lex/Preprocessor.cpp @@ -38,6 +38,7 @@ #include "llvm/ADT/SmallVector.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Streams.h" +#include <cstdio> using namespace clang; //===----------------------------------------------------------------------===// |