diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2023-03-08 04:43:16 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2023-03-08 04:43:16 +0000 |
commit | b7ec05677ee9f62c29e195e7be5125d39f7fdad9 (patch) | |
tree | d2d92930c9557994e5a771aef772966110966cc3 /usr.bin/top | |
parent | 3f4b7c5f0adcfdffa19cefea0c39206811487db6 (diff) |
Delete obsolete /* ARGSUSED */ lint comments.
ok miod@ millert@
Diffstat (limited to 'usr.bin/top')
-rw-r--r-- | usr.bin/top/top.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/top/top.c b/usr.bin/top/top.c index 227df4fdc2e..97972ca6065 100644 --- a/usr.bin/top/top.c +++ b/usr.bin/top/top.c @@ -1,4 +1,4 @@ -/* $OpenBSD: top.c,v 1.108 2022/12/16 15:54:27 cheloha Exp $ */ +/* $OpenBSD: top.c,v 1.109 2023/03/08 04:43:12 guenther Exp $ */ /* * Top users/processes display for Unix @@ -1095,28 +1095,24 @@ reset_display(void) } } -/* ARGSUSED */ void leave(int signo) { leaveflag = 1; } -/* ARGSUSED */ void tstop(int signo) { tstopflag = 1; } -/* ARGSUSED */ void sigwinch(int signo) { winchflag = 1; } -/* ARGSUSED */ void onalrm(int signo) { |