[11/15] Remove declaration of tui_set_var_cmd, make definition static

Message ID 20191125052655.22696-12-simon.marchi@efficios.com
State New, archived
Headers

Commit Message

Simon Marchi Nov. 25, 2019, 5:26 a.m. UTC
  The declaration of tui_set_var_cmd is not in sync with the definition.
Since tui_set_var_cmd is only used in the file where it's defined,
remove the declaration and make the definition static.

gdb/ChangeLog:

	* tui-win.h (tui_set_var_cmd): Remove.
	* tui-win.c (tui_set_var_cmd): Make static.

Change-Id: If4bddbfb573347fb7254fb6f1a940052a72f464f
---
 gdb/tui/tui-win.c | 3 ++-
 gdb/tui/tui-win.h | 3 ---
 2 files changed, 2 insertions(+), 4 deletions(-)
  

Patch

diff --git a/gdb/tui/tui-win.c b/gdb/tui/tui-win.c
index cf7093cc212e..487774bb53b6 100644
--- a/gdb/tui/tui-win.c
+++ b/gdb/tui/tui-win.c
@@ -334,7 +334,8 @@  tui_get_cmd_list (void)
 
 /* The set_func hook of "set tui ..." commands that affect the window
    borders on the TUI display.  */
-void
+
+static void
 tui_set_var_cmd (const char *null_args,
 		 int from_tty, struct cmd_list_element *c)
 {
diff --git a/gdb/tui/tui-win.h b/gdb/tui/tui-win.h
index e97eb672d78b..81b7dacb1502 100644
--- a/gdb/tui/tui-win.h
+++ b/gdb/tui/tui-win.h
@@ -54,7 +54,4 @@  extern void tui_update_gdb_sizes (void);
 /* Create or get the TUI command list.  */
 struct cmd_list_element **tui_get_cmd_list (void);
 
-/* Set a TUI variable.  */
-void tui_set_var_cmd (char *, int, struct cmd_list_element *);
-
 #endif /* TUI_TUI_WIN_H */