From af18abc6d9a6109b8d8e3a98c4f605edbab6714d Mon Sep 17 00:00:00 2001 From: Theo de Raadt <deraadt@cvs.openbsd.org> Date: Tue, 14 Sep 2004 22:55:49 +0000 Subject: ARGSUSED before signal handler with unused signo --- usr.bin/top/top.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'usr.bin/top/top.c') diff --git a/usr.bin/top/top.c b/usr.bin/top/top.c index 8161724b272..8c62a129883 100644 --- a/usr.bin/top/top.c +++ b/usr.bin/top/top.c @@ -1,4 +1,4 @@ -/* $OpenBSD: top.c,v 1.33 2004/05/09 22:16:26 deraadt Exp $ */ +/* $OpenBSD: top.c,v 1.34 2004/09/14 22:55:48 deraadt Exp $ */ /* * Top users/processes display for Unix @@ -825,24 +825,28 @@ reset_display(void) d_process = i_process; } +/* ARGSUSED */ void leave(int signo) { leaveflag = 1; } +/* ARGSUSED */ void tstop(int signo) { tstopflag = 1; } +/* ARGSUSED */ void winch(int signo) { winchflag = 1; } +/* ARGSUSED */ void onalrm(int signo) { -- cgit v1.2.3