diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-01-19 01:20:12 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-01-19 01:20:12 +0000 |
commit | c6f0559b48289f9b295ab3fac1bb5d78f88e5d91 (patch) | |
tree | b929e3257906fce9cfefc27afbe5ef43a05ec789 /gdb/remote-sds.c | |
parent | 8819f097a47d9f8ea0fb66fc4c54e8b202f81979 (diff) | |
download | gdb-c6f0559b48289f9b295ab3fac1bb5d78f88e5d91.zip gdb-c6f0559b48289f9b295ab3fac1bb5d78f88e5d91.tar.gz gdb-c6f0559b48289f9b295ab3fac1bb5d78f88e5d91.tar.bz2 |
2004-01-18 Andrew Cagney <cagney@redhat.com>
* remote-sds.c (tohex): Delete unused function. Update copyright.
* xstormy16-tdep.c (xstormy16_register_virtual_size): Ditto.
* v850-tdep.c (v850_register_virtual_size): Ditto.
* target.c (normal_target_post_startup_inferior): Ditto.
* source.c (ambiguous_line_spec): Ditto.
* remote.c (adapt_remote_get_threadinfo): Ditto.
* mi/mi-out.c (out_field_fmt): Ditto.
* mi/mi-interp.c (mi_interp_read_one_line_hook): Ditto.
(output_control_change_notification): Ditto.
* m68k-tdep.c (m68k_register_byte): Ditto.
(m68k_remote_breakpoint_from_pc): Ditto.
* ui-out.c (init_ui_out_state): Delete unused declaration.
* stabsread.c (search_value): Ditto.
* mi/mi-cmd-env.c (env_cli_command): Ditto.
* maint.c (print_section_table): Ditto.
* infrun.c (set_follow_fork_mode_command): Ditto.
Diffstat (limited to 'gdb/remote-sds.c')
-rw-r--r-- | gdb/remote-sds.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/gdb/remote-sds.c b/gdb/remote-sds.c index c920997..d74fd7d 100644 --- a/gdb/remote-sds.c +++ b/gdb/remote-sds.c @@ -1,6 +1,6 @@ /* Remote target communications for serial-line targets using SDS' protocol. - Copyright 1997, 1998, 1999, 2000, 2001, 2002 Free Software + Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of GDB. @@ -92,8 +92,6 @@ static ptid_t sds_wait (ptid_t, struct target_waitstatus *); static void sds_kill (void); -static int tohex (int); - static int fromhex (int); static void sds_detach (char *, int); @@ -278,17 +276,6 @@ fromhex (int a) error ("Reply contains invalid hex digit %d", a); } -/* Convert number NIB to a hex digit. */ - -static int -tohex (int nib) -{ - if (nib < 10) - return '0' + nib; - else - return 'a' + nib - 10; -} - static int tob64 (unsigned char *inbuf, char *outbuf, int len) { |