=================================================================== RCS file: /home/cvs/OpenXM_contrib/gmp/mpz/Attic/cdiv_r.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/cdiv_r.c 2000/09/09 14:12:49 1.1.1.2 +++ OpenXM_contrib/gmp/mpz/Attic/cdiv_r.c 2003/08/25 16:06:32 1.1.1.3 @@ -1,7 +1,7 @@ /* mpz_cdiv_r -- Division rounding the quotient towards +infinity. The remainder gets the opposite sign as the denominator. -Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. +Copyright 1994, 1995, 1996, 2001 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -24,14 +24,7 @@ MA 02111-1307, USA. */ #include "gmp-impl.h" void -#if __STDC__ mpz_cdiv_r (mpz_ptr rem, mpz_srcptr dividend, mpz_srcptr divisor) -#else -mpz_cdiv_r (rem, dividend, divisor) - mpz_ptr rem; - mpz_srcptr dividend; - mpz_srcptr divisor; -#endif { mp_size_t divisor_size = divisor->_mp_size; mpz_t temp_divisor; /* N.B.: lives until function returns! */