qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [5511] Update old fashioned function prototypes.
@ 2008-10-22 15:55 Paul Brook
  0 siblings, 0 replies; only message in thread
From: Paul Brook @ 2008-10-22 15:55 UTC (permalink / raw)
  To: qemu-devel

Revision: 5511
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5511
Author:   pbrook
Date:     2008-10-22 15:55:18 +0000 (Wed, 22 Oct 2008)

Log Message:
-----------
Update old fashioned function prototypes.

Signed-off-by: Stefan Weil <weil@mail.berlios.de>

Modified Paths:
--------------
    trunk/disas.c

Modified: trunk/disas.c
===================================================================
--- trunk/disas.c	2008-10-22 15:11:31 UTC (rev 5510)
+++ trunk/disas.c	2008-10-22 15:55:18 UTC (rev 5511)
@@ -14,11 +14,8 @@
 /* Get LENGTH bytes from info's buffer, at target address memaddr.
    Transfer them to myaddr.  */
 int
-buffer_read_memory (memaddr, myaddr, length, info)
-     bfd_vma memaddr;
-     bfd_byte *myaddr;
-     int length;
-     struct disassemble_info *info;
+buffer_read_memory(bfd_vma memaddr, bfd_byte *myaddr, int length,
+                   struct disassemble_info *info)
 {
     if (memaddr < info->buffer_vma
         || memaddr + length > info->buffer_vma + info->buffer_length)
@@ -46,10 +43,7 @@
 /* Print an error message.  We can assume that this is in response to
    an error return from buffer_read_memory.  */
 void
-perror_memory (status, memaddr, info)
-     int status;
-     bfd_vma memaddr;
-     struct disassemble_info *info;
+perror_memory (int status, bfd_vma memaddr, struct disassemble_info *info)
 {
   if (status != EIO)
     /* Can't happen.  */
@@ -69,9 +63,7 @@
    addresses).  */
 
 void
-generic_print_address (addr, info)
-     bfd_vma addr;
-     struct disassemble_info *info;
+generic_print_address (bfd_vma addr, struct disassemble_info *info)
 {
     (*info->fprintf_func) (info->stream, "0x%" PRIx64, addr);
 }
@@ -79,9 +71,7 @@
 /* Just return the given address.  */
 
 int
-generic_symbol_at_address (addr, info)
-     bfd_vma addr;
-     struct disassemble_info * info;
+generic_symbol_at_address (bfd_vma addr, struct disassemble_info *info)
 {
   return 1;
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-10-22 15:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-22 15:55 [Qemu-devel] [5511] Update old fashioned function prototypes Paul Brook

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).