diff options
Diffstat (limited to 'mpn/generic/divrem.c')
-rw-r--r-- | mpn/generic/divrem.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/mpn/generic/divrem.c b/mpn/generic/divrem.c index a900de073..8f6e1d92d 100644 --- a/mpn/generic/divrem.c +++ b/mpn/generic/divrem.c @@ -2,7 +2,7 @@ quotient. This is now just a middle layer for calling the new internal mpn_tdiv_qr. -Copyright 1993, 1994, 1995, 1996, 1997, 1999, 2000 Free Software +Copyright 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -27,19 +27,9 @@ MA 02111-1307, USA. */ #include "longlong.h" mp_limb_t -#if __STDC__ mpn_divrem (mp_ptr qp, mp_size_t qxn, mp_ptr np, mp_size_t nn, mp_srcptr dp, mp_size_t dn) -#else -mpn_divrem (qp, qxn, np, nn, dp, dn) - mp_ptr qp; - mp_size_t qxn; - mp_ptr np; - mp_size_t nn; - mp_srcptr dp; - mp_size_t dn; -#endif { ASSERT (qxn >= 0); ASSERT (nn >= dn); |