summaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-03-04 01:05:48 +0000
committerAndrew Cagney <cagney@redhat.com>2000-03-04 01:05:48 +0000
commit204b7515745570a3f8c0e4dcd3aa3c8af2c18159 (patch)
tree216a5a80e7bee1c6d08c6b9a92cb16b706dd9b49 /gdb/defs.h
parent0173ac8278d7b4486e0089fd8cd3ab15752f4ecf (diff)
downloadgdb-204b7515745570a3f8c0e4dcd3aa3c8af2c18159.tar.gz
Convert extract/store functions to ISO-C.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r--gdb/defs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index 99e8d14cefc..d316afce5db 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -1038,11 +1038,11 @@ extern int extract_long_unsigned_integer (void *, int, LONGEST *);
extern CORE_ADDR extract_address (void *, int);
-extern void store_signed_integer (PTR, int, LONGEST);
+extern void store_signed_integer (void *, int, LONGEST);
-extern void store_unsigned_integer (PTR, int, ULONGEST);
+extern void store_unsigned_integer (void *, int, ULONGEST);
-extern void store_address (PTR, int, LONGEST);
+extern void store_address (void *, int, LONGEST);
/* Setup definitions for host and target floating point formats. We need to
consider the format for `float', `double', and `long double' for both target