aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-10-15 22:10:56 +0000
committerTed Kremenek <kremenek@apple.com>2009-10-15 22:10:56 +0000
commit8c4195eefb90e7d6c06af57f5c845601d91a749a (patch)
tree07ea67bee755d8b12cfd3608bae3f5ebfafea83b
parent37b5ac2909a7693fc6e6842c5a8825bdeaa636dd (diff)
Add missing #include for wait().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84207 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/CIndex/CIndex.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/CIndex/CIndex.cpp b/tools/CIndex/CIndex.cpp
index 970ba3878a..33099cc239 100644
--- a/tools/CIndex/CIndex.cpp
+++ b/tools/CIndex/CIndex.cpp
@@ -24,6 +24,7 @@
#include "clang/Frontend/ASTUnit.h"
#include <cstdio>
#include <dlfcn.h>
+#include <sys/wait.h>
#include "llvm/System/Path.h"
using namespace clang;