From: Duncan Sands Date: Tue, 19 May 2009 12:06:47 +0000 (+0000) Subject: Add missing include for stderr and fprintf, needed X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=825511013cad8d303bb583d46f55b32e74d5d5ad;p=clang Add missing include for stderr and fprintf, needed when compiling with gcc-4.4. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72109 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/DiagChecker.cpp b/lib/Frontend/DiagChecker.cpp index 2eaf2fe62f..c0f5d141be 100644 --- a/lib/Frontend/DiagChecker.cpp +++ b/lib/Frontend/DiagChecker.cpp @@ -17,6 +17,7 @@ #include "clang/AST/ASTConsumer.h" #include "clang/Basic/SourceManager.h" #include "clang/Lex/Preprocessor.h" +#include using namespace clang; typedef TextDiagnosticBuffer::DiagList DiagList;