diff options
Diffstat (limited to 'stdlib/divrem.c')
-rw-r--r-- | stdlib/divrem.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/stdlib/divrem.c b/stdlib/divrem.c index 6159a3e..85e4245 100644 --- a/stdlib/divrem.c +++ b/stdlib/divrem.c @@ -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; |