commit | 902292d7ac1c59dc9fd3b4fc3823be0ed77febf9 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Tue Jan 05 20:55:39 2010 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Tue Jan 05 20:55:39 2010 +0000 |
tree | 8f67e7a60ea9cc31acde326cc3b3835d99b9ac24 | |
parent | 6c1c2051834d66abbb8a7676b44dc184535e3ee0 [diff] [blame] |
Add back #include of 'cstdio' to hopefully unbreak the build on Linux. llvm-svn: 92765
diff --git a/clang/tools/CIndex/CIndex.cpp b/clang/tools/CIndex/CIndex.cpp index 2b33a63..01a4cdd 100644 --- a/clang/tools/CIndex/CIndex.cpp +++ b/clang/tools/CIndex/CIndex.cpp
@@ -19,6 +19,9 @@ #include "llvm/Support/MemoryBuffer.h" #include "llvm/System/Program.h" +// Needed to define L_TMPNAM on some systems. +#include <cstdio> + using namespace clang; using namespace idx;