diff options
Diffstat (limited to 'stdlib/divmod_1.c')
-rw-r--r-- | stdlib/divmod_1.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/stdlib/divmod_1.c b/stdlib/divmod_1.c index d05975121f..b38fcfbd51 100644 --- a/stdlib/divmod_1.c +++ b/stdlib/divmod_1.c @@ -40,17 +40,9 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see here (not udiv_qrnnd). */ mp_limb_t -#if __STDC__ mpn_divmod_1 (mp_ptr quot_ptr, mp_srcptr dividend_ptr, mp_size_t dividend_size, mp_limb_t divisor_limb) -#else -mpn_divmod_1 (quot_ptr, dividend_ptr, dividend_size, divisor_limb) - mp_ptr quot_ptr; - mp_srcptr dividend_ptr; - mp_size_t dividend_size; - mp_limb_t divisor_limb; -#endif { mp_size_t i; mp_limb_t n1, n0, r; |