diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-05-29 10:20:27 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2001-05-29 10:20:27 +0000 |
commit | ad53e288d3fccbd419d5ba1979f2e5075f414462 (patch) | |
tree | d1b90efaaa4440ac1b8eb2d911305699dd8e8f01 /gdb/symfile.c | |
parent | e877bb694e97ee8d9714cee23b4de9bbe163cf5c (diff) | |
download | gdb-ad53e288d3fccbd419d5ba1979f2e5075f414462.zip gdb-ad53e288d3fccbd419d5ba1979f2e5075f414462.tar.gz gdb-ad53e288d3fccbd419d5ba1979f2e5075f414462.tar.bz2 |
* symfile.c (compare_psymbols, compare_symbols): Declare using
PTR, as in the definition.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index 822c114..5535eb6 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -117,9 +117,9 @@ static void add_shared_symbol_files_command (char *, int); static void cashier_psymtab (struct partial_symtab *); -static int compare_psymbols (const void *, const void *); +static int compare_psymbols (const PTR, const PTR); -static int compare_symbols (const void *, const void *); +static int compare_symbols (const PTR, const PTR); bfd *symfile_bfd_open (char *); |