diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 22:14:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 22:14:30 +0000 |
commit | db39404b1c0ae3bf5a76a87871dcc35b1dd0b411 (patch) | |
tree | df58baacf104b0b186290f20eb6481d33ff3659a /libexec/comsat/comsat.c | |
parent | fbd44d059bb82f7b472ccf354864468c27161839 (diff) |
ARGSUSED before signal handler with unused signo
Diffstat (limited to 'libexec/comsat/comsat.c')
-rw-r--r-- | libexec/comsat/comsat.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libexec/comsat/comsat.c b/libexec/comsat/comsat.c index e253918ab00..31e90690973 100644 --- a/libexec/comsat/comsat.c +++ b/libexec/comsat/comsat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: comsat.c,v 1.31 2003/09/26 01:58:55 deraadt Exp $ */ +/* $OpenBSD: comsat.c,v 1.32 2004/09/14 22:14:13 deraadt Exp $ */ /* * Copyright (c) 1980, 1993 @@ -37,7 +37,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)comsat.c 8.1 (Berkeley) 6/4/93";*/ -static char rcsid[] = "$OpenBSD: comsat.c,v 1.31 2003/09/26 01:58:55 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: comsat.c,v 1.32 2004/09/14 22:14:13 deraadt Exp $"; #endif /* not lint */ #include <sys/limits.h> @@ -152,6 +152,7 @@ main(int argc, char *argv[]) } } +/* ARGSUSED */ void reapchildren(int signo) { @@ -162,6 +163,7 @@ reapchildren(int signo) errno = save_errno; } +/* ARGSUSED */ void readutmp(int signo) { |