diff options
Diffstat (limited to 'gprof/i386.c')
-rw-r--r-- | gprof/i386.c | 5 |
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; |