[Lldb-commits] [PATCH 3/4] Add missing includes for standard declaration of FILE.
Stephen Wilson
wilsons at start.ca
Fri Dec 17 15:48:55 PST 2010
---
include/lldb/API/SBStream.h | 2 ++
source/API/SBCommandReturnObject.cpp | 2 ++
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/lldb/API/SBStream.h b/include/lldb/API/SBStream.h
index a2050f2..6888943 100644
--- a/include/lldb/API/SBStream.h
+++ b/include/lldb/API/SBStream.h
@@ -10,6 +10,8 @@
#ifndef LLDB_SBStream_h_
#define LLDB_SBStream_h_
+#include <stdio.h>
+
#include "lldb/API/SBDefines.h"
namespace lldb {
diff --git a/source/API/SBCommandReturnObject.cpp b/source/API/SBCommandReturnObject.cpp
index 69dcab6..6c4f38b 100644
--- a/source/API/SBCommandReturnObject.cpp
+++ b/source/API/SBCommandReturnObject.cpp
@@ -7,6 +7,8 @@
//
//===----------------------------------------------------------------------===//
+#include <stdio.h>
+
#include "lldb/API/SBCommandReturnObject.h"
#include "lldb/API/SBStream.h"
--
1.7.3.2
More information about the lldb-commits
mailing list