summaryrefslogtreecommitdiff
path: root/randclr.c
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>1999-05-23 21:43:31 +0200
committerLinus Nordberg <linus@nordberg.se>1999-05-23 21:43:31 +0200
commitdd651c2134d1e7d00371a41be8ad1dc0f508e5d4 (patch)
treeffa55cadbf7e42d37f95fec8b9fcc82717666859 /randclr.c
parent20eec234ea3ff94d0e4f4e509be376b9565d2990 (diff)
downloadgmp-dd651c2134d1e7d00371a41be8ad1dc0f508e5d4.tar.gz
The `gmp_rand_state' is now an array with one element rather than a pointer to a struct.
Add (partial) documentation for random functions.
Diffstat (limited to 'randclr.c')
-rw-r--r--randclr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/randclr.c b/randclr.c
index 457ff5512..d87b2d240 100644
--- a/randclr.c
+++ b/randclr.c
@@ -24,10 +24,10 @@ MA 02111-1307, USA. */
void
#if __STDC__
-gmp_rand_clear (gmp_rand_state *s)
+gmp_rand_clear (gmp_rand_state s)
#else
gmp_rand_clear (s)
- gmp_rand_state *s;
+ gmp_rand_state s;
#endif
{