diff options
author | Tom Tromey <tromey@redhat.com> | 2002-07-24 17:58:46 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2002-07-24 17:58:46 +0000 |
commit | b24830d4f1b1f9322484cd831039a9bf808cdf6d (patch) | |
tree | 4361eb9944853e6d4b4b36075e3f50a47dc6defc /gdb/defs.h | |
parent | a080421a8928e06e665f9a34bd0ccbc82659f96f (diff) | |
download | gdb-b24830d4f1b1f9322484cd831039a9bf808cdf6d.tar.gz |
* defs.h (gdb_readline_wrapper): Declare.
* utils.c (prompt_for_continue): Use gdb_readline_wrapper.
* tracepoint.c (read_actions): Use gdb_readline_wrapper.
* top.c (gdb_readline_wrapper): New function.
(command_line_input): Use it.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/defs.h b/gdb/defs.h index 94a1ac80423..7dea2b73397 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -535,6 +535,8 @@ extern char *skip_quoted (char *); extern char *gdb_readline (char *); +extern char *gdb_readline_wrapper (char *); + extern char *command_line_input (char *, int, char *); extern void print_prompt (void); |