summaryrefslogtreecommitdiff
path: root/tan.c
diff options
context:
space:
mode:
Diffstat (limited to 'tan.c')
-rw-r--r--tan.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/tan.c b/tan.c
index 50321a7c0..3effc8749 100644
--- a/tan.c
+++ b/tan.c
@@ -1,6 +1,6 @@
/* mpfr_tan -- tangent of a floating-point number
-Copyright (C) 2001 Free Software Foundation.
+Copyright (C) 2001 Free Software Foundation, Inc.
This file is part of the MPFR Library.
@@ -27,14 +27,7 @@ MA 02111-1307, USA. */
/* computes tan(x) = sign(x)*sqrt(1/cos(x)^2-1) */
int
-#if __STDC__
mpfr_tan (mpfr_ptr y, mpfr_srcptr x, mp_rnd_t rnd_mode)
-#else
-mpfr_tan (y, x, rnd_mode)
- mpfr_ptr y;
- mpfr_srcptr x;
- mp_rnd_t rnd_mode;
-#endif
{
int precy, m, ok, e, inexact;
mpfr_t c;