forked from OSchip/llvm-project
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:
parent
5a642079d7
commit
83a4b3f225
lldb/tools
|
@ -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_
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue