summaryrefslogtreecommitdiff
path: root/rand/randsdui.c
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2021-06-06 22:53:16 +0200
committerMarc Glisse <marc.glisse@inria.fr>2021-06-06 22:53:16 +0200
commit6e2405b086ddba4d04646df25491b36a6eea13c3 (patch)
treec715a8a61a703db47a08685e3a7fdd1d5765fd90 /rand/randsdui.c
parent4efbb58f64cfc98d4cb3977795781e2175e8803f (diff)
downloadgmp-6e2405b086ddba4d04646df25491b36a6eea13c3.tar.gz
Consistently use pointers instead of arrays in declarations.
gmp_randstate_t -> gmp_randstate_ptr, etc
Diffstat (limited to 'rand/randsdui.c')
-rw-r--r--rand/randsdui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rand/randsdui.c b/rand/randsdui.c
index 46d80ad4c..a91a14882 100644
--- a/rand/randsdui.c
+++ b/rand/randsdui.c
@@ -32,7 +32,7 @@ see https://www.gnu.org/licenses/. */
#include "gmp-impl.h"
void
-gmp_randseed_ui (gmp_randstate_t rstate,
+gmp_randseed_ui (gmp_randstate_ptr rstate,
unsigned long int seed)
{
mpz_t zseed;