* mipsread.c, objfiles.c, utils.c: Use PTR not void *. RISC/OS

4.02 lacks void *.
	* elfread.c: Use void * not PTR inside PARAMS.
This commit is contained in:
Jim Kingdon 1993-10-03 01:50:53 +00:00
parent bde18e3eaa
commit 77fe3f84ff
3 changed files with 8 additions and 4 deletions

View file

@ -1,5 +1,9 @@
Sat Oct 2 19:28:35 1993 Jim Kingdon (kingdon@lioth.cygnus.com) Sat Oct 2 19:28:35 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* mipsread.c, objfiles.c, utils.c: Use PTR not void *. RISC/OS
4.02 lacks void *.
* elfread.c: Use void * not PTR inside PARAMS.
* config/mips/news-mips.mh: Remove coredep.o; mips-nat.o does it. * config/mips/news-mips.mh: Remove coredep.o; mips-nat.o does it.
* config/mips/news-mips.mh: Define NAT_FILE not NM_FILE. * config/mips/news-mips.mh: Define NAT_FILE not NM_FILE.
* config/mips/nm-news-mips.h: Include mips/nm-mips.h not nm-mips.h. * config/mips/nm-news-mips.h: Include mips/nm-mips.h not nm-mips.h.

View file

@ -77,7 +77,7 @@ static void
elf_symtab_read PARAMS ((bfd *, CORE_ADDR, struct objfile *)); elf_symtab_read PARAMS ((bfd *, CORE_ADDR, struct objfile *));
static void static void
free_elfinfo PARAMS ((PTR)); free_elfinfo PARAMS ((void *));
static struct section_offsets * static struct section_offsets *
elf_symfile_offsets PARAMS ((struct objfile *, CORE_ADDR)); elf_symfile_offsets PARAMS ((struct objfile *, CORE_ADDR));
@ -88,7 +88,7 @@ record_minimal_symbol_and_info PARAMS ((char *, CORE_ADDR,
struct objfile *)); struct objfile *));
static void static void
elf_locate_sections PARAMS ((bfd *, asection *, PTR)); elf_locate_sections PARAMS ((bfd *, asection *, void *));
/* We are called once per section from elf_symfile_read. We /* We are called once per section from elf_symfile_read. We
need to examine each section we are passed, check to see need to examine each section we are passed, check to see

View file

@ -121,7 +121,7 @@ allocate_objfile (abfd, mapped)
{ {
struct objfile *objfile = NULL; struct objfile *objfile = NULL;
int fd; int fd;
void *md; PTR md;
CORE_ADDR mapto; CORE_ADDR mapto;
mapped |= mapped_symbol_files; mapped |= mapped_symbol_files;
@ -142,7 +142,7 @@ allocate_objfile (abfd, mapped)
if (fd >= 0) if (fd >= 0)
{ {
if (((mapto = map_to_address ()) == 0) || if (((mapto = map_to_address ()) == 0) ||
((md = mmalloc_attach (fd, (void *) mapto)) == NULL)) ((md = mmalloc_attach (fd, (PTR) mapto)) == NULL))
{ {
close (fd); close (fd);
} }