Make stdin_event_handler static
authorTom Tromey <tom@tromey.com>
Fri, 26 Aug 2022 22:48:24 +0000 (16:48 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 20 Sep 2022 19:49:48 +0000 (13:49 -0600)
I noticed that stdin_event_handler is only used in event-top.c, so
this patch changes it to be 'static'.

gdb/event-top.c
gdb/event-top.h

index 00adbe8fb4fd11461da03fa19c4dd59a66c9c982..88c53b720a9efb69093ea376eaa21f4a5b9d19e4 100644 (file)
@@ -497,7 +497,7 @@ get_command_line_buffer (void)
    instead of calling gdb_readline_no_editing_callback, give gdb a
    chance to detect errors and do something.  */
 
-void
+static void
 stdin_event_handler (int error, gdb_client_data client_data)
 {
   struct ui *ui = (struct ui *) client_data;
index 722e636a11050cf894ca2e2ebdca6edb019e0c6a..883ad191115433fb6b5d997599d228e16cbd1f59 100644 (file)
@@ -45,7 +45,6 @@ extern void handle_sigtstp (int sig);
 extern void handle_sigint (int sig);
 extern void handle_sigterm (int sig);
 extern void async_request_quit (void *arg);
-extern void stdin_event_handler (int error, void *client_data);
 extern void async_disable_stdin (void);
 extern void async_enable_stdin (void);