aboutsummaryrefslogtreecommitdiff
path: root/gdb/doublest.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-08-01 22:11:43 +0000
committerAndrew Cagney <cagney@redhat.com>2001-08-01 22:11:43 +0000
commit64f6fcadfcd33a3ea554ab17015de033061db0f8 (patch)
tree5928b903a1f1bee93e145d4449579231c673381b /gdb/doublest.h
parentd16aafd8c8fc6227dd015e45794817bd9ac2ea17 (diff)
* doublest.h (store_floating, floatformat_to_doublest): Make IN
paramter a const void pointer. (floatformat_from_doublest): Make IN const, Make OUT a void pointer. * doublest.c (floatformat_to_doublest): Update. (floatformat_from_doublest): Update. (extract_floating): Update.
Diffstat (limited to 'gdb/doublest.h')
-rw-r--r--gdb/doublest.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/doublest.h b/gdb/doublest.h
index 8e3919685c..692280db5f 100644
--- a/gdb/doublest.h
+++ b/gdb/doublest.h
@@ -73,15 +73,15 @@ typedef double DOUBLEST;
#endif
extern void floatformat_to_doublest (const struct floatformat *,
- char *, DOUBLEST *);
+ const void *in, DOUBLEST *out);
extern void floatformat_from_doublest (const struct floatformat *,
- DOUBLEST *, char *);
+ const DOUBLEST *in, void *out);
extern int floatformat_is_negative (const struct floatformat *, char *);
extern int floatformat_is_nan (const struct floatformat *, char *);
extern char *floatformat_mantissa (const struct floatformat *, char *);
-extern DOUBLEST extract_floating (void *, int);
+extern DOUBLEST extract_floating (const void *in, int);
extern void store_floating (void *, int, DOUBLEST);
#endif