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 /sys/ddb/db_watch.c | |
parent | 3f4b7c5f0adcfdffa19cefea0c39206811487db6 (diff) |
Delete obsolete /* ARGSUSED */ lint comments.
ok miod@ millert@
Diffstat (limited to 'sys/ddb/db_watch.c')
-rw-r--r-- | sys/ddb/db_watch.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/ddb/db_watch.c b/sys/ddb/db_watch.c index cae2307f7d9..2c7ec1e1473 100644 --- a/sys/ddb/db_watch.c +++ b/sys/ddb/db_watch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_watch.c,v 1.18 2020/10/15 03:14:00 deraadt Exp $ */ +/* $OpenBSD: db_watch.c,v 1.19 2023/03/08 04:43:07 guenther Exp $ */ /* $NetBSD: db_watch.c,v 1.9 1996/03/30 22:30:12 christos Exp $ */ /* @@ -146,7 +146,6 @@ db_list_watchpoints(void) } /* Delete watchpoint */ -/*ARGSUSED*/ void db_deletewatch_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif) { @@ -154,7 +153,6 @@ db_deletewatch_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif) } /* Set watchpoint */ -/*ARGSUSED*/ void db_watchpoint_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif) { @@ -171,7 +169,6 @@ db_watchpoint_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif) } /* list watchpoints */ -/*ARGSUSED*/ void db_listwatch_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif) { |