diff options
author | Linus Nordberg <linus@nordberg.se> | 1999-05-23 21:43:31 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 1999-05-23 21:43:31 +0200 |
commit | dd651c2134d1e7d00371a41be8ad1dc0f508e5d4 (patch) | |
tree | ffa55cadbf7e42d37f95fec8b9fcc82717666859 /randclr.c | |
parent | 20eec234ea3ff94d0e4f4e509be376b9565d2990 (diff) | |
download | gmp-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 { |