summaryrefslogtreecommitdiff
path: root/stdlib/divrem.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/divrem.c')
-rw-r--r--stdlib/divrem.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/stdlib/divrem.c b/stdlib/divrem.c
index 6159a3e203..095efef1d4 100644
--- a/stdlib/divrem.c
+++ b/stdlib/divrem.c
@@ -1,7 +1,7 @@
/* mpn_divrem -- Divide natural numbers, producing both remainder and
quotient.
-Copyright (C) 1993-2015 Free Software Foundation, Inc.
+Copyright (C) 1993-2016 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -40,19 +40,9 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
3. NSIZE >= DSIZE, even if QEXTRA_LIMBS is non-zero. */
mp_limb_t
-#if __STDC__
mpn_divrem (mp_ptr qp, mp_size_t qextra_limbs,
mp_ptr np, mp_size_t nsize,
mp_srcptr dp, mp_size_t dsize)
-#else
-mpn_divrem (qp, qextra_limbs, np, nsize, dp, dsize)
- mp_ptr qp;
- mp_size_t qextra_limbs;
- mp_ptr np;
- mp_size_t nsize;
- mp_srcptr dp;
- mp_size_t dsize;
-#endif
{
mp_limb_t most_significant_q_limb = 0;