summaryrefslogtreecommitdiff
path: root/mpf/urandomb.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 /mpf/urandomb.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 'mpf/urandomb.c')
-rw-r--r--mpf/urandomb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpf/urandomb.c b/mpf/urandomb.c
index ebe85ab69..79399019e 100644
--- a/mpf/urandomb.c
+++ b/mpf/urandomb.c
@@ -34,7 +34,7 @@ see https://www.gnu.org/licenses/. */
#include "gmp-impl.h"
void
-mpf_urandomb (mpf_t rop, gmp_randstate_t rstate, mp_bitcnt_t nbits)
+mpf_urandomb (mpf_ptr rop, gmp_randstate_ptr rstate, mp_bitcnt_t nbits)
{
mp_ptr rp;
mp_size_t nlimbs;