2007-06-28 Michael Snyder <msnyder@access-company.com>
[deliverable/binutils-gdb.git] / gas / flonum-mult.c
index 9ecb63d3c76e8197913ca246d8b338332b60b255..c6dd8ffdd7b13744f8eb7b38c7899866f1965b18 100644 (file)
@@ -1,5 +1,6 @@
 /* flonum_mult.c - multiply two flonums
-   Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992, 1995, 2000, 2002, 2003
+   Free Software Foundation, Inc.
 
    This file is part of Gas, the GNU Assembler.
 
@@ -18,7 +19,7 @@
    in a file named COPYING.  Among other things, the copyright
    notice and this notice must be preserved on all copies.  */
 
-#include <ansidecl.h>
+#include "ansidecl.h"
 #include "flonum.h"
 
 /*     plan for a . b => p(roduct)
        (C style also gives deeper insight [to me] ... oh well ...)  */
 \f
 void
-flonum_multip (a, b, product)
-     const FLONUM_TYPE *a;
-     const FLONUM_TYPE *b;
-     FLONUM_TYPE *product;
+flonum_multip (const FLONUM_TYPE *a, const FLONUM_TYPE *b,
+              FLONUM_TYPE *product)
 {
   int size_of_a;               /* 0 origin  */
   int size_of_b;               /* 0 origin  */
@@ -160,7 +159,7 @@ flonum_multip (a, b, product)
        }
     }
   /* [P]-> position # size_of_sum + 1.
-     This is where 'carry' should go. */
+     This is where 'carry' should go.  */
 #ifdef TRACE
   printf ("final carry =%04x\n", carry);
 #endif
This page took 0.026709 seconds and 4 git commands to generate.