Remove unused editline includes

LLDB included editline in a couple of places, not respecting LLDB_DISABLE_LIBEDIT. As far as I can tell, these includes are not used, so I am removing them.

llvm-svn: 239199
This commit is contained in:
Pavel Labath 2015-06-05 23:14:14 +00:00
parent 5a642079d7
commit 83a4b3f225
2 changed files with 0 additions and 17 deletions
lldb/tools

View File

@ -102,16 +102,6 @@
#include <pthread.h>
#include <sys/time.h>
#if !defined(__ANDROID_NDK__)
#include <histedit.h>
#if defined(__FreeBSD__) || defined(__NetBSD__)
#include <readline/readline.h>
#else
#include <editline/readline.h>
#endif
#endif
#endif
#endif // lldb_Platform_h_

View File

@ -97,14 +97,7 @@ extern sighandler_t signal(int sig, sighandler_t);
#include <termios.h>
#include <unistd.h>
#include <histedit.h>
#include <pthread.h>
#include <sys/time.h>
#if defined(__FreeBSD__)
#include <readline/readline.h>
#else
#include <editline/readline.h>
#endif
#endif