summaryrefslogtreecommitdiff
path: root/mul.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-16 13:22:13 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-16 13:22:13 +0000
commit569a16f84e4ec55a207c83bceba2eb68fc5acd6b (patch)
tree56e2e55f898e53d5fc32ba2ebea667eeb48898ef /mul.c
parent629ac173de88c32f2274b1bb509aa77815fcf209 (diff)
downloadmpfr-569a16f84e4ec55a207c83bceba2eb68fc5acd6b.tar.gz
removed K&R function headers
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1548 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mul.c')
-rw-r--r--mul.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/mul.c b/mul.c
index 713fed862..9165f0430 100644
--- a/mul.c
+++ b/mul.c
@@ -1,7 +1,6 @@
/* mpfr_mul -- multiply two floating-point numbers
-Copyright (C) 1999-2001 Free Software Foundation.
-Contributed by Paul Zimmermann, INRIA Lorraine.
+Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the MPFR Library.
@@ -26,21 +25,8 @@ MA 02111-1307, USA. */
#include "mpfr.h"
#include "mpfr-impl.h"
-/* Remains to do:
-- do not use all bits of b and c when MPFR_PREC(b)>MPFR_PREC(a) or MPFR_PREC(c)>MPFR_PREC(a)
- [current complexity is O(MPFR_PREC(b)*MPFR_PREC(c))]
-*/
-
int
-#if __STDC__
mpfr_mul (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t rnd_mode)
-#else
-mpfr_mul (a, b, c, rnd_mode)
- mpfr_ptr a;
- mpfr_srcptr b;
- mpfr_srcptr c;
- mp_rnd_t rnd_mode;
-#endif
{
unsigned int bn, cn, an, tn, k;
int cc, inexact = 0;