diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 22:55:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 22:55:49 +0000 |
commit | af18abc6d9a6109b8d8e3a98c4f605edbab6714d (patch) | |
tree | 6f39a20e4c0af8f155d731449f0dcb01a0ba6bcd /usr.bin | |
parent | e0410762c45b2d35a07231a067cc34e83ec0b8d7 (diff) |
ARGSUSED before signal handler with unused signo
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/top/top.c | 6 |
1 files changed, 5 insertions, 1 deletions
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) { |