Remove leftover declarations in interps.h
authorSimon Marchi <simon.marchi@polymtl.ca>
Sat, 21 Oct 2017 14:15:48 +0000 (10:15 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Sat, 21 Oct 2017 14:15:48 +0000 (10:15 -0400)
The corresponding definitions have already been removed.

gdb/ChangeLog:

* interps.h (interp_resume, interp_suspend, interp_set_temp):
Remove declarations.

gdb/ChangeLog
gdb/interps.h

index e6e1d02..9b6247e 100644 (file)
@@ -1,3 +1,8 @@
+2017-10-21  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * interps.h (interp_resume, interp_suspend, interp_set_temp):
+       Remove declarations.
+
 2017-10-20  Tom Tromey  <tom@tromey.com>
 
        * gdb_bfd.c (struct gdb_bfd_data) <included_bfds>: Now a
index 09d1314..2a0ee0b 100644 (file)
@@ -35,8 +35,6 @@ typedef struct interp *(*interp_factory_func) (const char *name);
 extern void interp_factory_register (const char *name,
                                     interp_factory_func func);
 
-extern int interp_resume (struct interp *interp);
-extern int interp_suspend (struct interp *interp);
 extern struct gdb_exception interp_exec (struct interp *interp,
                                         const char *command);
 
@@ -102,7 +100,6 @@ extern void set_top_level_interpreter (const char *name);
 
 extern struct ui_out *interp_ui_out (struct interp *interp);
 extern const char *interp_name (struct interp *interp);
-extern struct interp *interp_set_temp (const char *name);
 
 /* Temporarily set the current interpreter, and reset it on
    destruction.  */