diff options
author | 2002-03-14 01:26:25 +0000 | |
---|---|---|
committer | 2002-03-14 01:26:25 +0000 | |
commit | c4071fd13883b3f74b90a411bbb39755a785aeaa (patch) | |
tree | 241e7c760222fac909b512d36156c6db1b610256 /sys/dev/rndvar.h | |
parent | compare pointers with NULL not 0 (diff) | |
download | wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/rndvar.h')
-rw-r--r-- | sys/dev/rndvar.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/rndvar.h b/sys/dev/rndvar.h index 77c2b03b496..71ed91ece86 100644 --- a/sys/dev/rndvar.h +++ b/sys/dev/rndvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rndvar.h,v 1.15 2001/09/22 19:41:13 mickey Exp $ */ +/* $OpenBSD: rndvar.h,v 1.16 2002/03/14 01:26:52 millert Exp $ */ /* * Copyright (c) 1996,2000 Michael Shalayeff. @@ -89,10 +89,10 @@ extern struct rndstats rndstats; #define add_audio_randomness(d) enqueue_randomness(RND_SRC_AUDIO, (int)(d)) #define add_video_randomness(d) enqueue_randomness(RND_SRC_VIDEO, (int)(d)) -void enqueue_randomness __P((int, int)); -void get_random_bytes __P((void *, size_t)); -u_int32_t arc4random __P((void)); -int arc4random_8 __P((void)); +void enqueue_randomness(int, int); +void get_random_bytes(void *, size_t); +u_int32_t arc4random(void); +int arc4random_8(void); #endif /* _KERNEL */ |