diff options
author | guenther@openbsd.org <guenther@openbsd.org> | 2023-03-08 04:43:12 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2023-03-08 17:26:53 +1100 |
commit | 51875897b81b5c21b80c256a29597916edbde454 (patch) | |
tree | a44cfbf3d3eb2a4fc168f18e306cc002e521d32f /serverloop.c | |
parent | a76085bda883c2104afb33ab0334eca190927362 (diff) | |
download | openssh-git-51875897b81b5c21b80c256a29597916edbde454.tar.gz |
upstream: Delete obsolete /* ARGSUSED */ lint comments.
ok miod@ millert@
OpenBSD-Commit-ID: 7be168a570264d59e96a7d2d22e927d45fee0e4c
Diffstat (limited to 'serverloop.c')
-rw-r--r-- | serverloop.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/serverloop.c b/serverloop.c index 550a3ba8..de5fa2e3 100644 --- a/serverloop.c +++ b/serverloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: serverloop.c,v 1.235 2023/03/05 05:34:09 dtucker Exp $ */ +/* $OpenBSD: serverloop.c,v 1.236 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 @@ -112,14 +112,12 @@ bind_permitted(int port, uid_t uid) return 1; } -/*ARGSUSED*/ static void sigchld_handler(int sig) { child_terminated = 1; } -/*ARGSUSED*/ static void sigterm_handler(int sig) { |