diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | bf6c959448e3470b740fc6f032faf4ee6c1ed43a (patch) | |
tree | 8aeacca23eb32d57e7ef9abce8d272f5b3adc53c /gdb/inflow.c | |
parent | b25fcc020b2d009c63e29b7655a7534507a50f88 (diff) | |
download | gdb-bf6c959448e3470b740fc6f032faf4ee6c1ed43a.tar.gz |
PARAMS removal.gdb-post-params-removal-2000-05-28
Diffstat (limited to 'gdb/inflow.c')
-rw-r--r-- | gdb/inflow.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/gdb/inflow.c b/gdb/inflow.c index 3747a7d73d5..0b98f83ea9d 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -57,20 +57,16 @@ #endif #if defined (SIGIO) && defined (FASYNC) && defined (FD_SET) && defined (F_SETOWN) -static void -handle_sigio PARAMS ((int)); +static void handle_sigio (int); #endif -extern void _initialize_inflow PARAMS ((void)); +extern void _initialize_inflow (void); -static void -pass_signal PARAMS ((int)); +static void pass_signal (int); -static void -kill_command PARAMS ((char *, int)); +static void kill_command (char *, int); -static void -terminal_ours_1 PARAMS ((int)); +static void terminal_ours_1 (int); /* Record terminal status separately for debugger and inferior. */ @@ -176,7 +172,7 @@ gdb_has_a_terminal () fprintf_unfiltered(gdb_stderr, "[%s failed in terminal_inferior: %s]\n", \ what, strerror (errno)) -static void terminal_ours_1 PARAMS ((int)); +static void terminal_ours_1 (int); /* Initialize the terminal settings we record for the inferior, before we actually run the inferior. */ |