summaryrefslogtreecommitdiff
path: root/gprof/i386.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2001-08-09 14:57:42 +0000
committerAlan Modra <amodra@bigpond.net.au>2001-08-09 14:57:42 +0000
commit31a23f0df69c90041478928ddb9529d8c36f3a33 (patch)
treec3b7e32d34bc186ff83051911ed6dd325aca9e06 /gprof/i386.c
parentdcd2d853e6a4aade0332f671b60cf13dbc6688de (diff)
downloadbinutils-redhat-31a23f0df69c90041478928ddb9529d8c36f3a33.tar.gz
* alpha.c: Add missing prototypes.
* sparc.c: Likewise. * tahoe.c: Likewise. * vax.c: Likewise. * i386.c: Likewise. (i386_iscall): Don't use DEFUN.
Diffstat (limited to 'gprof/i386.c')
-rw-r--r--gprof/i386.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gprof/i386.c b/gprof/i386.c
index 338a443d99..8836dc3e99 100644
--- a/gprof/i386.c
+++ b/gprof/i386.c
@@ -22,9 +22,12 @@
#include "hist.h"
#include "symtab.h"
+int i386_iscall PARAMS ((unsigned char *));
+void i386_find_call PARAMS ((Sym *, bfd_vma, bfd_vma));
int
-DEFUN (i386_iscall, (ip), unsigned char *ip)
+i386_iscall (ip)
+ unsigned char *ip;
{
if (*ip == 0xe8)
return 1;