diff options
author | guenther@openbsd.org <guenther@openbsd.org> | 2023-03-08 05:43:12 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2023-03-08 07:26:53 +0100 |
commit | 51875897b81b5c21b80c256a29597916edbde454 (patch) | |
tree | a44cfbf3d3eb2a4fc168f18e306cc002e521d32f /clientloop.c | |
parent | Extra brackets to prevent warning. (diff) | |
download | openssh-51875897b81b5c21b80c256a29597916edbde454.tar.xz openssh-51875897b81b5c21b80c256a29597916edbde454.zip |
upstream: Delete obsolete /* ARGSUSED */ lint comments.
ok miod@ millert@
OpenBSD-Commit-ID: 7be168a570264d59e96a7d2d22e927d45fee0e4c
Diffstat (limited to 'clientloop.c')
-rw-r--r-- | clientloop.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clientloop.c b/clientloop.c index 1bdc7e61d..3fb72fb2f 100644 --- a/clientloop.c +++ b/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.389 2023/03/03 09:48:51 dtucker Exp $ */ +/* $OpenBSD: clientloop.c,v 1.390 2023/03/08 04:43:12 guenther Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -215,7 +215,6 @@ quit_message(const char *fmt, ...) * 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) { @@ -226,7 +225,6 @@ 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) { |