diff options
author | Tom Tromey <tromey@redhat.com> | 2014-01-18 19:30:20 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-12 09:59:17 -0700 |
commit | 971dc0b89de28feaa5efade1f1f8675be223fabd (patch) | |
tree | d031abf767013288c86fb13d443afc41b11d2fb2 /gdb/common/rsp-low.h | |
parent | 0a822afbcdf6aee6c25a840e4785ad3af56a94fd (diff) | |
download | fsf-binutils-gdb-971dc0b89de28feaa5efade1f1f8675be223fabd.zip fsf-binutils-gdb-971dc0b89de28feaa5efade1f1f8675be223fabd.tar.gz fsf-binutils-gdb-971dc0b89de28feaa5efade1f1f8675be223fabd.tar.bz2 |
replace hexify with bin2hex
This removes hexify in favor of bin2hex.
The choice of which to keep was arbitrary.
2014-02-12 Tom Tromey <tromey@redhat.com>
* common/rsp-low.h (hexify): Don't declare.
* common/rsp-low.c (hexify): Remove.
2014-02-12 Tom Tromey <tromey@redhat.com>
* remote-utils.c (look_up_one_symbol, monitor_output): Use
bin2hex, not hexify.
* tracepoint.c (cmd_qtstatus): Likewise.
Diffstat (limited to 'gdb/common/rsp-low.h')
-rw-r--r-- | gdb/common/rsp-low.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/common/rsp-low.h b/gdb/common/rsp-low.h index 161c4a2..2ef5e6d 100644 --- a/gdb/common/rsp-low.h +++ b/gdb/common/rsp-low.h @@ -42,8 +42,6 @@ extern void convert_ascii_to_int (const char *from, unsigned char *to, int n); extern int bin2hex (const gdb_byte *bin, char *hex, int count); -extern int hexify (char *hex, const char *bin, int count); - extern void convert_int_to_ascii (const unsigned char *from, char *to, int n); /* Convert BUFFER, binary data at least LEN bytes long, into escaped |