Protoization.
authorKevin Buettner <kevinb@redhat.com>
Sat, 2 Sep 2000 00:07:32 +0000 (00:07 +0000)
committerKevin Buettner <kevinb@redhat.com>
Sat, 2 Sep 2000 00:07:32 +0000 (00:07 +0000)
gdb/ChangeLog
gdb/hppa-tdep.c
gdb/hppah-nat.c

index 94eb3c628e34623bc54b366a50e69fca7b7b4057..9f14c3d688fea7a86adef9984a75835f0c03a1d4 100644 (file)
@@ -1,3 +1,8 @@
+2000-09-01  Kevin Buettner  <kevinb@redhat.com>
+
+       * hppa-tdep.c (record_text_segment_lowaddr): Protoize.
+       * hppah-nat.c (child_xfer_memory): Protoize.
+
 2000-09-01  Kevin Buettner  <kevinb@redhat.com>
 
        * symtab.c (decode_line_1):  Make sure leading character is
index d6579388b165b57ea3a4774d8e2ba0faa8432174..551fd8ed645215df8858560df772e38533d86939 100644 (file)
@@ -294,10 +294,7 @@ compare_unwind_entries (const void *arg1, const void *arg2)
 static CORE_ADDR low_text_segment_address;
 
 static void
-record_text_segment_lowaddr (abfd, section, ignored)
-     bfd *abfd ATTRIBUTE_UNUSED;
-     asection *section;
-     PTR ignored ATTRIBUTE_UNUSED;
+record_text_segment_lowaddr (bfd *abfd, asection *section, void *ignored)
 {
   if ((section->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY)
        == (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
index 222a6e08d8ddc9906ca3217f4928c3ba8e688e0a..128d66ddc5473bedf7578ca4a50b0181c0e301ae 100644 (file)
@@ -262,15 +262,11 @@ fetch_register (int regno)
    Returns the length copied, which is either the LEN argument or zero.
    This xfer function does not do partial moves, since child_ops
    doesn't allow memory operations to cross below us in the target stack
-   anyway.  */
+   anyway.  TARGET is ignored.  */
 
 int
-child_xfer_memory (memaddr, myaddr, len, write, target)
-     CORE_ADDR memaddr;
-     char *myaddr;
-     int len;
-     int write;
-     struct target_ops *target;        /* ignored */
+child_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
+                  struct target_ops *target)
 {
   register int i;
   /* Round starting address down to longword boundary.  */