]> granicus.if.org Git - clang/commitdiff
Add back #include of 'cstdio' to hopefully unbreak the build on Linux.
authorTed Kremenek <kremenek@apple.com>
Tue, 5 Jan 2010 20:55:39 +0000 (20:55 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 5 Jan 2010 20:55:39 +0000 (20:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92765 91177308-0d34-0410-b5e6-96231b3b80d8

tools/CIndex/CIndex.cpp

index 2b33a63b98305ea39fcabedce844de7a984cfaf9..01a4cdd0ae8625b65912660e732f8f75ad413141 100644 (file)
@@ -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;