diff options
author | 1996-09-06 08:36:13 +0000 | |
---|---|---|
committer | 1996-09-06 08:36:13 +0000 | |
commit | 881cd0eecff841b519ea2ad66a60a67435a7b14a (patch) | |
tree | ead77c17c28dabbc893c2f5f9cc45053accc67ce /sys/dev/rndvar.h | |
parent | Need cpu.h included to get at setsoftnet define (diff) | |
download | wireguard-openbsd-881cd0eecff841b519ea2ad66a60a67435a7b14a.tar.xz wireguard-openbsd-881cd0eecff841b519ea2ad66a60a67435a7b14a.zip |
cleanup and sync w/ latest Linux source.
remove keyboard randomness entry point.
make Free ppl happy, remove suspicious piece.
missed: SHA neede in libkern, why not to put aRC4 there too?
Diffstat (limited to 'sys/dev/rndvar.h')
-rw-r--r-- | sys/dev/rndvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/rndvar.h b/sys/dev/rndvar.h index 34297e6922e..013ffe38fac 100644 --- a/sys/dev/rndvar.h +++ b/sys/dev/rndvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rndvar.h,v 1.3 1996/08/11 07:31:32 dm Exp $ */ +/* $OpenBSD: rndvar.h,v 1.4 1996/09/06 08:36:14 mickey Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff. @@ -54,7 +54,7 @@ extern void add_blkdev_randomness __P((dev_t)); extern void add_tty_randomness __P((dev_t, int)); extern void get_random_bytes __P((void *, size_t)); -extern unsigned long arc4random __P((void)); +extern u_int32_t arc4random __P((void)); #endif /* _KERNEL */ |