diff options
author | Per Bothner <per@bothner.com> | 1998-12-23 23:06:11 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1998-12-23 23:06:11 +0000 |
commit | 0bf2ba41ef3123cd52ec37634031ac8d935d0070 (patch) | |
tree | c46ab08a7cb8225da27a810743bc2fb14854f732 /gdb/tracepoint.c | |
parent | 229e1740dfb4078048aaf5a98eafc6375029377c (diff) | |
download | gdb-0bf2ba41ef3123cd52ec37634031ac8d935d0070.zip gdb-0bf2ba41ef3123cd52ec37634031ac8d935d0070.tar.gz gdb-0bf2ba41ef3123cd52ec37634031ac8d935d0070.tar.bz2 |
* Makefile.in (READLINE_CFLAGS): Search $(READLINE_SRC)/.. rather
than $(READLINE_SRC) so #include <readline/readline.h> will work.
* top.c: #include <readline/history.h> instead of "history.h".
* tracepoint.c: Likewise.
* mac-xdep.c: Likewise.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 610ee40..9f03617 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -33,8 +33,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "ax-gdb.h" /* readline include files */ -#include "readline/readline.h" -#include "history.h" +#include <readline/readline.h> +#include <readline/history.h> /* readline defines this. */ #undef savestring |