summaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorStan Shebs <shebs@apple.com>1999-09-08 23:58:56 +0000
committerStan Shebs <shebs@apple.com>1999-09-08 23:58:56 +0000
commit86d990163cfccd9d3e2d278046a9835e8fcd9cdd (patch)
tree20bab847f75a795e533db18873a64ab0bc4facef /gdb/defs.h
parent8a6785e8d98eea17ad6e1454b2ef3ae473872854 (diff)
downloadgdb-86d990163cfccd9d3e2d278046a9835e8fcd9cdd.tar.gz
import gdb-1999-09-08 snapshotgdb-1999-09-08
Diffstat (limited to 'gdb/defs.h')
-rw-r--r--gdb/defs.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index 3ad9b99dac7..6f1d96a720b 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -517,12 +517,13 @@ extern void fputstr_unfiltered PARAMS ((const char *str, int quotr, GDB_FILE *st
extern void fputstrn_unfiltered PARAMS ((const char *str, int n, int quotr, GDB_FILE *stream));
-extern void gdb_print_address PARAMS ((void *, GDB_FILE *));
+/* Display the host ADDR on STREAM formatted as ``0x%x''. */
+extern void gdb_print_host_address (void *addr, struct gdb_file *stream);
/* Convert a CORE_ADDR into a HEX string. paddr() is like %08lx.
paddr_nz() is like %lx. paddr_u() is like %lu. paddr_width() is
for ``%*''. */
-extern int strlen_paddr ();
+extern int strlen_paddr (void);
extern char* paddr (CORE_ADDR addr);
extern char* paddr_nz (CORE_ADDR addr);
extern char* paddr_u (CORE_ADDR addr);