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/dev/rnd.c | |
parent | 3f4b7c5f0adcfdffa19cefea0c39206811487db6 (diff) |
Delete obsolete /* ARGSUSED */ lint comments.
ok miod@ millert@
Diffstat (limited to 'sys/dev/rnd.c')
-rw-r--r-- | sys/dev/rnd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/rnd.c b/sys/dev/rnd.c index 5139d4288c9..9bce17cc9c8 100644 --- a/sys/dev/rnd.c +++ b/sys/dev/rnd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rnd.c,v 1.225 2022/11/03 04:56:47 guenther Exp $ */ +/* $OpenBSD: rnd.c,v 1.226 2023/03/08 04:43:08 guenther Exp $ */ /* * Copyright (c) 2011,2020 Theo de Raadt. @@ -242,7 +242,6 @@ add_entropy_words(const u_int32_t *buf, u_int n) * queue and entries from the consumer end of the queue which are * likely to have collected more damage. */ -/* ARGSUSED */ void dequeue_randomness(void *v) { @@ -616,7 +615,6 @@ arc4random_uniform(u_int32_t upper_bound) return r % upper_bound; } -/* ARGSUSED */ void rnd_init(void *null) { |