diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-19 18:56:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-19 18:56:43 +0000 |
commit | f4494404c45da62a27398ff888487d63369de4e7 (patch) | |
tree | be7dfde0eb6d3eb96afd1210c100ef2843939a57 /usr.bin/ssh/clientloop.c | |
parent | 9643d67d8e8ef1f8bb5f43ecf5927d708115084e (diff) |
ARGSUSED for signal handlers
Diffstat (limited to 'usr.bin/ssh/clientloop.c')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index c8f1f99a116..b7dad903751 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -186,7 +186,7 @@ enter_non_blocking(void) * Signal handler for the window change signal (SIGWINCH). This just sets a * flag indicating that the window has changed. */ - +/*ARGSUSED */ static void window_change_handler(int sig) { @@ -198,7 +198,7 @@ window_change_handler(int sig) * Signal handler for signals that cause the program to terminate. These * signals must be trapped to restore terminal modes. */ - +/*ARGSUSED */ static void signal_handler(int sig) { |