aboutsummaryrefslogtreecommitdiff
path: root/gdb/symfile.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-01-17 01:05:06 +0000
committerAndrew Cagney <cagney@redhat.com>2004-01-17 01:05:06 +0000
commitcf5b2f1b3af009aaa4b9af2dd5e70f4754c5da00 (patch)
tree8b994599f7cc7f029e63ae92af4ac1867728458a /gdb/symfile.c
parentd33b9831c7678a1e7a27b9f6195e59a095d28297 (diff)
downloadgdb-cf5b2f1b3af009aaa4b9af2dd5e70f4754c5da00.zip
gdb-cf5b2f1b3af009aaa4b9af2dd5e70f4754c5da00.tar.gz
gdb-cf5b2f1b3af009aaa4b9af2dd5e70f4754c5da00.tar.bz2
2004-01-16 Andrew Cagney <cagney@redhat.com>
* symfile.c: Update copyright year. (compare_symbols): Delete unused function. * stabsread.c: Update copyright year. (lrs_general_complaint): Delete unused function. (ref_search_value): Ditto. (get_substring): Delete declaration. * sh64-tdep.c: Update copyright year. (sh64_get_gdb_regnum): Delete unused function. * dwarf2read.c (dwarf2_unsupported_at_frame_base_complaint): Delete unused function.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r--gdb/symfile.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c
index e940003..430cf2d 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -1,7 +1,7 @@
/* Generic symbol file reading for the GNU debugger, GDB.
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
- 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+ 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
Contributed by Cygnus Support, using pieces from other GDB modules.
@@ -199,20 +199,6 @@ int auto_solib_add = 1;
int auto_solib_limit;
-/* Since this function is called from within qsort, in an ANSI environment
- it must conform to the prototype for qsort, which specifies that the
- comparison function takes two "void *" pointers. */
-
-static int
-compare_symbols (const void *s1p, const void *s2p)
-{
- struct symbol **s1, **s2;
-
- s1 = (struct symbol **) s1p;
- s2 = (struct symbol **) s2p;
- return (strcmp (SYMBOL_NATURAL_NAME (*s1), SYMBOL_NATURAL_NAME (*s2)));
-}
-
/* This compares two partial symbols by names, using strcmp_iw_ordered
for the comparison. */