Protoization.
This commit is contained in:
parent
47d89dba5e
commit
fa6b9313b5
3 changed files with 12 additions and 15 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2000-09-27 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
|
* os9kread.c (os9k_symfile_read, os9k_end_psymtab): Protoize.
|
||||||
|
* osfsolib.c (find_solib): Protoize.
|
||||||
|
|
||||||
2000-09-25 Kevin Buettner <kevinb@redhat.com>
|
2000-09-25 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
* ns32knbsd-nat.c (fetch_core_registers): Protoize.
|
* ns32knbsd-nat.c (fetch_core_registers): Protoize.
|
||||||
|
|
|
@ -312,9 +312,7 @@ read_minimal_symbols (struct objfile *objfile)
|
||||||
table (as opposed to a shared lib or dynamically loaded file). */
|
table (as opposed to a shared lib or dynamically loaded file). */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
os9k_symfile_read (objfile, mainline)
|
os9k_symfile_read (struct objfile *objfile, int mainline)
|
||||||
struct objfile *objfile;
|
|
||||||
int mainline; /* FIXME comments above */
|
|
||||||
{
|
{
|
||||||
bfd *sym_bfd;
|
bfd *sym_bfd;
|
||||||
struct cleanup *back_to;
|
struct cleanup *back_to;
|
||||||
|
@ -987,16 +985,11 @@ os9k_start_psymtab (struct objfile *objfile, char *filename, CORE_ADDR textlow,
|
||||||
FIXME: List variables and peculiarities of same. */
|
FIXME: List variables and peculiarities of same. */
|
||||||
|
|
||||||
static struct partial_symtab *
|
static struct partial_symtab *
|
||||||
os9k_end_psymtab (pst, include_list, num_includes, capping_symbol_cnt,
|
os9k_end_psymtab (struct partial_symtab *pst, char **include_list,
|
||||||
capping_text, dependency_list, number_dependencies)
|
int num_includes, int capping_symbol_cnt,
|
||||||
struct partial_symtab *pst;
|
CORE_ADDR capping_text,
|
||||||
char **include_list;
|
struct partial_symtab **dependency_list,
|
||||||
int num_includes;
|
int number_dependencies)
|
||||||
int capping_symbol_cnt;
|
|
||||||
CORE_ADDR capping_text;
|
|
||||||
struct partial_symtab **dependency_list;
|
|
||||||
int number_dependencies;
|
|
||||||
/* struct partial_symbol *capping_global, *capping_static; */
|
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
struct partial_symtab *p1;
|
struct partial_symtab *p1;
|
||||||
|
|
|
@ -507,8 +507,7 @@ xfer_link_map_member (struct so_list *so_list_ptr, struct link_map *lm)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static struct so_list *
|
static struct so_list *
|
||||||
find_solib (so_list_ptr)
|
find_solib (struct so_list *so_list_ptr)
|
||||||
struct so_list *so_list_ptr; /* Last lm or NULL for first one */
|
|
||||||
{
|
{
|
||||||
struct so_list *so_list_next = NULL;
|
struct so_list *so_list_next = NULL;
|
||||||
struct link_map *lm = NULL;
|
struct link_map *lm = NULL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue