summaryrefslogtreecommitdiff
path: root/exp.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-04-12 16:11:14 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-04-12 16:11:14 +0000
commit73e28ccf0a5af92d0bbde32cc88f399f9eb354fa (patch)
tree5a7f660b375504868faeb0716d85f49b3cf05245 /exp.c
parent52d1db754d00ea55bb694e3683e8f4fa13146bfc (diff)
downloadmpfr-73e28ccf0a5af92d0bbde32cc88f399f9eb354fa.tar.gz
Code clean-up.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1865 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'exp.c')
-rw-r--r--exp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/exp.c b/exp.c
index febe28062..612843a54 100644
--- a/exp.c
+++ b/exp.c
@@ -28,9 +28,6 @@ MA 02111-1307, USA. */
/* #define DEBUG */
-extern int mpfr_exp_2 _PROTO((mpfr_ptr, mpfr_srcptr, mp_rnd_t));
-extern int mpfr_exp3 _PROTO((mpfr_ptr, mpfr_srcptr, mp_rnd_t));
-
/* use Brent's formula exp(x) = (1+r+r^2/2!+r^3/3!+...)^(2^K)*2^n
where x = n*log(2)+(2^K)*r
number of operations = O(K+prec(r)/K)