diff options
| author | Eli Friedman <eli.friedman@gmail.com> | 2010-06-12 18:37:54 +0000 |
|---|---|---|
| committer | Eli Friedman <eli.friedman@gmail.com> | 2010-06-12 18:37:54 +0000 |
| commit | 1978d861c3178482f53e16d5a42391fd1ace12d2 (patch) | |
| tree | 03ebee44123fd016ccad2f1b1df8f403f4fcbeb4 /lldb | |
| parent | 81ad726f048a33f0049f83d95d987e52a2be4baf (diff) | |
| download | bcm5719-llvm-1978d861c3178482f53e16d5a42391fd1ace12d2.tar.gz bcm5719-llvm-1978d861c3178482f53e16d5a42391fd1ace12d2.zip | |
Add missing includes.
llvm-svn: 105897
Diffstat (limited to 'lldb')
| -rw-r--r-- | lldb/include/lldb/API/SBBreakpoint.h | 1 | ||||
| -rw-r--r-- | lldb/include/lldb/API/SBEvent.h | 1 | ||||
| -rw-r--r-- | lldb/include/lldb/API/SBInstruction.h | 2 | ||||
| -rw-r--r-- | lldb/include/lldb/API/SBInstructionList.h | 2 | ||||
| -rw-r--r-- | lldb/include/lldb/API/SBProcess.h | 1 | ||||
| -rw-r--r-- | lldb/include/lldb/API/SBSourceManager.h | 2 | ||||
| -rw-r--r-- | lldb/include/lldb/API/SBThread.h | 2 | ||||
| -rw-r--r-- | lldb/include/lldb/API/SBValue.h | 2 |
8 files changed, 13 insertions, 0 deletions
diff --git a/lldb/include/lldb/API/SBBreakpoint.h b/lldb/include/lldb/API/SBBreakpoint.h index ad5fd0cf730..142d26e869c 100644 --- a/lldb/include/lldb/API/SBBreakpoint.h +++ b/lldb/include/lldb/API/SBBreakpoint.h @@ -11,6 +11,7 @@ #define LLDB_SBBreakpoint_h_ #include "lldb/API/SBDefines.h" +#include <stdio.h> namespace lldb { diff --git a/lldb/include/lldb/API/SBEvent.h b/lldb/include/lldb/API/SBEvent.h index 188a14a7fd8..8bceb1811aa 100644 --- a/lldb/include/lldb/API/SBEvent.h +++ b/lldb/include/lldb/API/SBEvent.h @@ -10,6 +10,7 @@ #ifndef LLDB_SBEvent_h_ #define LLDB_SBEvent_h_ +#include <stdio.h> #include <vector> #include "lldb/API/SBDefines.h" diff --git a/lldb/include/lldb/API/SBInstruction.h b/lldb/include/lldb/API/SBInstruction.h index 8cc526dd170..ab1e76da503 100644 --- a/lldb/include/lldb/API/SBInstruction.h +++ b/lldb/include/lldb/API/SBInstruction.h @@ -12,6 +12,8 @@ #include "lldb/API/SBDefines.h" +#include <stdio.h> + // There's a lot to be fixed here, but need to wait for underlying insn implementation // to be revised & settle down first. diff --git a/lldb/include/lldb/API/SBInstructionList.h b/lldb/include/lldb/API/SBInstructionList.h index 629174743c2..ba91420bff5 100644 --- a/lldb/include/lldb/API/SBInstructionList.h +++ b/lldb/include/lldb/API/SBInstructionList.h @@ -12,6 +12,8 @@ #include "lldb/API/SBDefines.h" +#include <stdio.h> + namespace lldb { class SBInstructionList diff --git a/lldb/include/lldb/API/SBProcess.h b/lldb/include/lldb/API/SBProcess.h index 9eb0e9ac583..a0958921ec1 100644 --- a/lldb/include/lldb/API/SBProcess.h +++ b/lldb/include/lldb/API/SBProcess.h @@ -13,6 +13,7 @@ #include "lldb/API/SBDefines.h" #include "lldb/API/SBError.h" #include "lldb/API/SBTarget.h" +#include <stdio.h> namespace lldb { diff --git a/lldb/include/lldb/API/SBSourceManager.h b/lldb/include/lldb/API/SBSourceManager.h index d1bddc55f3a..2e188a65385 100644 --- a/lldb/include/lldb/API/SBSourceManager.h +++ b/lldb/include/lldb/API/SBSourceManager.h @@ -12,6 +12,8 @@ #include "lldb/API/SBDefines.h" +#include <stdio.h> + namespace lldb { class SBSourceManager diff --git a/lldb/include/lldb/API/SBThread.h b/lldb/include/lldb/API/SBThread.h index bea481a5017..0b6f1e02af6 100644 --- a/lldb/include/lldb/API/SBThread.h +++ b/lldb/include/lldb/API/SBThread.h @@ -12,6 +12,8 @@ #include "lldb/API/SBDefines.h" +#include <stdio.h> + namespace lldb { class SBFrame; diff --git a/lldb/include/lldb/API/SBValue.h b/lldb/include/lldb/API/SBValue.h index 2f214274dfd..c0538a6ee1f 100644 --- a/lldb/include/lldb/API/SBValue.h +++ b/lldb/include/lldb/API/SBValue.h @@ -12,6 +12,8 @@ #include "lldb/API/SBDefines.h" +#include <stdio.h> + namespace lldb { class SBValue |

