diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-05-15 03:56:30 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-05-15 03:56:30 +0000 |
commit | 3339cf8b68bc5b7f14a4d255daae2a06b8dd5d77 (patch) | |
tree | 51353446cf61630bafa6b2b4f47af4f8db6d9c17 /gdb/arch-utils.h | |
parent | b02eeafb146d5938518304f2b29697ed3c53f82d (diff) | |
download | binutils-gdb-3339cf8b68bc5b7f14a4d255daae2a06b8dd5d77.tar.gz |
Move core_addr_lessthan and core_addr_greaterthan to arch-utils.
Diffstat (limited to 'gdb/arch-utils.h')
-rw-r--r-- | gdb/arch-utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/arch-utils.h b/gdb/arch-utils.h index 608dfc0117b..5762cddccd8 100644 --- a/gdb/arch-utils.h +++ b/gdb/arch-utils.h @@ -59,4 +59,8 @@ extern gdbarch_remote_translate_xfer_address_ftype generic_remote_translate_xfer changed. */ extern gdbarch_prologue_frameless_p_ftype generic_prologue_frameless_p; +/* The only possible cases for inner_than. */ +extern int core_addr_lessthan (CORE_ADDR lhs, CORE_ADDR rhs); +extern int core_addr_greaterthan (CORE_ADDR lhs, CORE_ADDR rhs); + #endif |