2004-10-29 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gprof / i386.c
index 0fcaa78a71970f7b841565a62fdd1d040273a067..91d38fa06cb53838173e5a344f20e47cdb5074ef 100644 (file)
 #include "corefile.h"
 #include "hist.h"
 
-static int i386_iscall PARAMS ((unsigned char *));
-void i386_find_call PARAMS ((Sym *, bfd_vma, bfd_vma));
+static int i386_iscall (unsigned char *);
+void i386_find_call (Sym *, bfd_vma, bfd_vma);
 
 static int
-i386_iscall (ip)
-     unsigned char *ip;
+i386_iscall (unsigned char *ip)
 {
   if (*ip == 0xe8)
     return 1;
@@ -48,10 +47,7 @@ i386_iscall (ip)
 
 
 void
-i386_find_call (parent, p_lowpc, p_highpc)
-     Sym *parent;
-     bfd_vma p_lowpc;
-     bfd_vma p_highpc;
+i386_find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc)
 {
   unsigned char *instructp;
   Sym *child;
This page took 0.024358 seconds and 4 git commands to generate.