summaryrefslogtreecommitdiff
path: root/gas/flonum.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2003-11-22 16:03:03 +0000
committerKazu Hirata <kazu@codesourcery.com>2003-11-22 16:03:03 +0000
commit59a911d4b7de75bc423ff0af3613dcc44fe8fa03 (patch)
tree8825aacac1efb55ef33c570f232d804ba8f72e79 /gas/flonum.h
parentdcab34cc0ceafcec38be00c9232f51bf1b54b18f (diff)
downloadbinutils-redhat-59a911d4b7de75bc423ff0af3613dcc44fe8fa03.tar.gz
* ehopt.c: Convert to ISO-C.
* emul.h: Likewise. * expr.c: Likewise. * expr.h: Likewise. * flonum-copy.c: Likewise. * flonum-mult.c: Likewise. * flonum.h: Likewise. * frags.c: Likewise. * frags.h: Likewise.
Diffstat (limited to 'gas/flonum.h')
-rw-r--r--gas/flonum.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/gas/flonum.h b/gas/flonum.h
index e50d9bf90f..22aa7558e8 100644
--- a/gas/flonum.h
+++ b/gas/flonum.h
@@ -84,14 +84,14 @@ extern const int table_size_of_flonum_powers_of_ten;
* *
\***********************************************************************/
-int atof_generic PARAMS ((char **address_of_string_pointer,
- const char *string_of_decimal_marks,
- const char *string_of_decimal_exponent_marks,
- FLONUM_TYPE * address_of_generic_floating_point_number));
-
-void flonum_copy PARAMS ((FLONUM_TYPE * in, FLONUM_TYPE * out));
-void flonum_multip PARAMS ((const FLONUM_TYPE * a, const FLONUM_TYPE * b,
- FLONUM_TYPE * product));
+int atof_generic (char **address_of_string_pointer,
+ const char *string_of_decimal_marks,
+ const char *string_of_decimal_exponent_marks,
+ FLONUM_TYPE * address_of_generic_floating_point_number);
+
+void flonum_copy (FLONUM_TYPE * in, FLONUM_TYPE * out);
+void flonum_multip (const FLONUM_TYPE * a, const FLONUM_TYPE * b,
+ FLONUM_TYPE * product);
/***********************************************************************\
* *