summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-16 10:14:44 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-16 10:14:44 +0000
commit3f0075187360b247ac2cdf438940ab48a6890362 (patch)
tree850113b15240f3059e12c673126b831ae612f7f0
parente6550d7323afbf6535199cc49617e8fb17c73aba (diff)
downloadmpfr-3f0075187360b247ac2cdf438940ab48a6890362.tar.gz
removed prototype already in mpfr.h
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1519 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--acosh.c2
-rw-r--r--asinh.c4
-rw-r--r--atanh.c2
-rw-r--r--copysign.c1
-rw-r--r--cosh.c1
5 files changed, 1 insertions, 9 deletions
diff --git a/acosh.c b/acosh.c
index 5be322df4..316b32fac 100644
--- a/acosh.c
+++ b/acosh.c
@@ -31,8 +31,6 @@ MA 02111-1307, USA. */
acosh= ln(x+sqrt(x-1)*sqrt(x+1))
*/
-int mpfr_acosh _PROTO((mpfr_ptr, mpfr_srcptr, mp_rnd_t));
-
int
#if __STDC__
mpfr_acosh (mpfr_ptr y, mpfr_srcptr x , mp_rnd_t rnd_mode)
diff --git a/asinh.c b/asinh.c
index 771f90e48..2b69def65 100644
--- a/asinh.c
+++ b/asinh.c
@@ -26,12 +26,10 @@ MA 02111-1307, USA. */
#include "mpfr.h"
#include "mpfr-impl.h"
- /* The computation of acosh is done by
+ /* The computation of asinh is done by
asinh= ln(x+sqrt(x^2+1))
*/
-int mpfr_asinh _PROTO((mpfr_ptr, mpfr_srcptr, mp_rnd_t));
-
int
#if __STDC__
mpfr_asinh (mpfr_ptr y, mpfr_srcptr xt , mp_rnd_t rnd_mode)
diff --git a/atanh.c b/atanh.c
index 3a3f11497..00a762fe1 100644
--- a/atanh.c
+++ b/atanh.c
@@ -31,8 +31,6 @@ MA 02111-1307, USA. */
atanh= 1/2*ln(x+1)-1/2*ln(1-x)
*/
-int mpfr_atanh _PROTO((mpfr_ptr, mpfr_srcptr, mp_rnd_t));
-
int
#if __STDC__
mpfr_atanh (mpfr_ptr y, mpfr_srcptr xt , mp_rnd_t rnd_mode)
diff --git a/copysign.c b/copysign.c
index 87b0d9d6f..415bfed75 100644
--- a/copysign.c
+++ b/copysign.c
@@ -29,7 +29,6 @@ MA 02111-1307, USA. */
z = sign(y) * abs(x)
*/
-int mpfr_copysign _PROTO((mpfr_ptr, mpfr_srcptr,mpfr_srcptr, mp_rnd_t));
int
#if __STDC__
diff --git a/cosh.c b/cosh.c
index 2c9e850b5..788a26b09 100644
--- a/cosh.c
+++ b/cosh.c
@@ -29,7 +29,6 @@ MA 02111-1307, USA. */
cosh= 1/2[e^(x)+e^(-x)]
*/
-int mpfr_cosh _PROTO((mpfr_ptr, mpfr_srcptr, mp_rnd_t));
int
#if __STDC__