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 | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/inflow.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
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 3747a7d..0b98f83 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. */ |