Add missing headers.

Something changed in commit r129112 where a few standard headers vanished from
the include chain when building on Linux.  Fix up by including limits.h for
INT_MAX and PATH_MAX where needed, and stdio.h for printf().

llvm-svn: 129130
This commit is contained in:
Stephen Wilson 2011-04-08 13:36:44 +00:00
parent 466d0c1f93
commit 8acdbb8a75
9 changed files with 13 additions and 0 deletions

View File

@ -10,6 +10,8 @@
#ifndef liblldb_StreamTee_h_
#define liblldb_StreamTee_h_
#include <limits.h>
#include "lldb/Core/Stream.h"
#include "lldb/Host/Mutex.h"

View File

@ -10,6 +10,7 @@
#ifndef liblldb_StringList_h_
#define liblldb_StringList_h_
#include <stdint.h>
#include "lldb/Core/STLUtils.h"
#include "lldb/lldb-forward.h"

View File

@ -7,6 +7,8 @@
//
//===----------------------------------------------------------------------===//
#include <limits.h>
#include "lldb/API/SBFileSpec.h"
#include "lldb/API/SBStream.h"
#include "lldb/Host/FileSpec.h"

View File

@ -7,6 +7,8 @@
//
//===----------------------------------------------------------------------===//
#include <limits.h>
#include "lldb/API/SBLineEntry.h"
#include "lldb/API/SBStream.h"
#include "lldb/Core/StreamString.h"

View File

@ -10,6 +10,7 @@
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <sys/stat.h>
#include <sys/mman.h>

View File

@ -9,6 +9,8 @@
#include "lldb/Core/PluginManager.h"
#include <limits.h>
#include <string>
#include <vector>

View File

@ -11,6 +11,7 @@
#include "lldb/Host/File.h"
#include <fcntl.h>
#include <limits.h>
#include <stdarg.h>
#include <sys/stat.h>

View File

@ -25,6 +25,7 @@
#include <dlfcn.h>
#include <errno.h>
#include <grp.h>
#include <limits.h>
#include <netdb.h>
#include <pwd.h>
#include <sys/types.h>

View File

@ -10,6 +10,7 @@
#include "DWARFDebugAranges.h"
#include <assert.h>
#include <stdio.h>
#include <algorithm>