=================================================================== RCS file: /home/cvs/OpenXM_contrib/gmp/mpz/Attic/urandomm.c,v retrieving revision 1.1.1.2 retrieving revision 1.1.1.3 diff -u -p -r1.1.1.2 -r1.1.1.3 --- OpenXM_contrib/gmp/mpz/Attic/urandomm.c 2000/12/01 05:45:13 1.1.1.2 +++ OpenXM_contrib/gmp/mpz/Attic/urandomm.c 2003/08/25 16:06:34 1.1.1.3 @@ -2,7 +2,7 @@ integer in the range 0 to N-1, using STATE as the random state previously initialized by a call to gmp_randinit(). -Copyright (C) 2000 Free Software Foundation, Inc. +Copyright 2000 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -26,14 +26,7 @@ MA 02111-1307, USA. */ #include "longlong.h" void -#if __STDC__ -mpz_urandomm (mpz_t rop, gmp_randstate_t rstate, mpz_t n) -#else -mpz_urandomm (rop, rstate, n) - mpz_t rop; - gmp_randstate_t rstate; - mpz_t n; -#endif +mpz_urandomm (mpz_ptr rop, gmp_randstate_t rstate, mpz_srcptr n) { mpz_t t, p, m; mp_ptr tp;