aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-02-12 15:23:20 +0000
committerAndrew Cagney <cagney@redhat.com>2003-02-12 15:23:20 +0000
commit1cdac4ef8f478bf82a446451857d8568f242c3b6 (patch)
tree387dd092d416d0fa25639959ff3298c8e60972e7
parent88fa91b4734013adadbd4e1c44155af5b3f5ef5e (diff)
downloadgdb-1cdac4ef8f478bf82a446451857d8568f242c3b6.zip
gdb-1cdac4ef8f478bf82a446451857d8568f242c3b6.tar.gz
gdb-1cdac4ef8f478bf82a446451857d8568f242c3b6.tar.bz2
2003-02-12 Andrew Cagney <ac131313@redhat.com>
* interps.h (interp_command_loop_ftype): Change return type to void.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/interps.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b4d4bc4..a7ca6ae 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2003-02-12 Andrew Cagney <ac131313@redhat.com>
+
+ * interps.h (interp_command_loop_ftype): Change return type to
+ void.
+
2003-02-12 Michal Ludvig <mludvig@suse.cz>
* x86-64-tdep.c (x86_64_extract_return_value)
diff --git a/gdb/interps.h b/gdb/interps.h
index 21362f4..3954e55 100644
--- a/gdb/interps.h
+++ b/gdb/interps.h
@@ -39,7 +39,7 @@ typedef int (interp_resume_ftype) (void *data);
typedef int (interp_suspend_ftype) (void *data);
typedef int (interp_prompt_p_ftype) (void *data);
typedef int (interp_exec_ftype) (void *data, const char *command);
-typedef int (interp_command_loop_ftype) (void *data);
+typedef void (interp_command_loop_ftype) (void *data);
struct interp_procs
{