summaryrefslogtreecommitdiff
path: root/src/mpfr-gmp.h
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2011-09-19 09:04:37 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2011-09-19 09:04:37 +0000
commitc3827269de7d77b6a5ef9eca432689a4ee9d13b0 (patch)
tree4cdb261905f3df6df9cf57708a5c897a2c470edc /src/mpfr-gmp.h
parent2b8cfbc24ea5a643d6ecef8260a0ac3355276cc2 (diff)
downloadmpfr-c3827269de7d77b6a5ef9eca432689a4ee9d13b0.tar.gz
[src/mpfr-gmp.h] fixed bug with --enable-gmp-internals introduced in r7455
(mpfr_limb_ptr is not yet defined when reading mpfr-gmp.h thus we can't use it) git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@7858 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src/mpfr-gmp.h')
-rw-r--r--src/mpfr-gmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mpfr-gmp.h b/src/mpfr-gmp.h
index 75554cc3b..689b36954 100644
--- a/src/mpfr-gmp.h
+++ b/src/mpfr-gmp.h
@@ -289,8 +289,8 @@ __MPFR_DECLSPEC void __gmp_default_free _MPFR_PROTO ((void *, size_t));
#if defined(WANT_GMP_INTERNALS) && defined(HAVE___GMPN_ROOTREM)
#ifndef __gmpn_rootrem
- __MPFR_DECLSPEC mp_size_t __gmpn_rootrem _MPFR_PROTO ((mpfr_limb_ptr,
- mpfr_limb_ptr, mpfr_limb_srcptr, mp_size_t, mp_limb_t));
+ __MPFR_DECLSPEC mp_size_t __gmpn_rootrem _MPFR_PROTO ((mp_limb_t*,
+ mp_limb_t*, mp_limb_t*, mp_size_t, mp_limb_t));
#endif
#endif