summaryrefslogtreecommitdiff
path: root/gas/atof-generic.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2003-11-21 01:52:16 +0000
committerKazu Hirata <kazu@codesourcery.com>2003-11-21 01:52:16 +0000
commit0d69b48ddd97048e030ad2a4b71cb7c11f65a79f (patch)
tree394ca3c3fe00533accd5fb4d2b2c05df5e71f6f1 /gas/atof-generic.c
parent8e66ebb2e05688bc2efa58a10917c52d6abee64c (diff)
downloadbinutils-redhat-0d69b48ddd97048e030ad2a4b71cb7c11f65a79f.tar.gz
* app.c: Convert to ISO-C.
* as.h: Likewise. * atof-generic.c: Likewise. * bignum-copy.c: Likewise. * bignum.h: Likewise. * cgen.c: Likewise. * cgen.h: Likewise. * cond.c: Likewise.
Diffstat (limited to 'gas/atof-generic.c')
-rw-r--r--gas/atof-generic.c18
1 files changed, 7 insertions, 11 deletions
diff --git a/gas/atof-generic.c b/gas/atof-generic.c
index 6b6c7b25e9..8c599b571e 100644
--- a/gas/atof-generic.c
+++ b/gas/atof-generic.c
@@ -32,7 +32,7 @@
#endif
#ifdef TRACE
-static void flonum_print PARAMS ((const FLONUM_TYPE *));
+static void flonum_print (const FLONUM_TYPE *);
#endif
#define ASSUME_DECIMAL_MARK_IS_DOT
@@ -75,16 +75,12 @@ static void flonum_print PARAMS ((const FLONUM_TYPE *));
*/
int
-atof_generic (address_of_string_pointer,
- string_of_decimal_marks,
- string_of_decimal_exponent_marks,
- address_of_generic_floating_point_number)
- /* return pointer to just AFTER number we read. */
- char **address_of_string_pointer;
- /* At most one per number. */
- const char *string_of_decimal_marks;
- const char *string_of_decimal_exponent_marks;
- FLONUM_TYPE *address_of_generic_floating_point_number;
+atof_generic (/* return pointer to just AFTER number we read. */
+ char **address_of_string_pointer,
+ /* At most one per number. */
+ const char *string_of_decimal_marks,
+ const char *string_of_decimal_exponent_marks,
+ FLONUM_TYPE *address_of_generic_floating_point_number)
{
int return_value; /* 0 means OK. */
char *first_digit;