+Mon Jul 25 18:19:24 1994 Stu Grossman (grossman@cygnus.com)
+
+ * target.c (nomemory): Fix prototype and routine to take correct
+ args.
+
Mon Jul 25 15:38:23 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* Makefile.in (clean): Remove libgdb-files.
tcomplain PARAMS ((void));
static int
-nomemory PARAMS ((CORE_ADDR, char *, int, int));
+nomemory PARAMS ((CORE_ADDR, char *, int, int, struct target_ops *));
static int
return_zero PARAMS ((void));
/* ARGSUSED */
static int
-nomemory (memaddr, myaddr, len, write)
+nomemory (memaddr, myaddr, len, write, t)
CORE_ADDR memaddr;
char *myaddr;
int len;
int write;
+ struct target_ops *t;
{
errno = EIO; /* Can't read/write this location */
return 0; /* No bytes handled */
core-file, and process, if any), as well as the symbol file name.";
void
-_initialize_targets ()
+initialize_targets ()
{
push_target (&dummy_target);