diff options
author | Richard Henderson <rth@redhat.com> | 2002-01-27 02:43:52 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2002-01-27 02:43:52 +0000 |
commit | 3b04e72964711ad05337b59eaabb10f4a94d7e0f (patch) | |
tree | 39ef416c0d6b0eeeb96d9d669e91bde2629de668 /gprof/i386.c | |
parent | e82380ccbbc6fba0c3b800b82cafb481baa73280 (diff) | |
download | gdb-3b04e72964711ad05337b59eaabb10f4a94d7e0f.zip gdb-3b04e72964711ad05337b59eaabb10f4a94d7e0f.tar.gz gdb-3b04e72964711ad05337b59eaabb10f4a94d7e0f.tar.bz2 |
* i386.c (i386_iscall): Static.
* tahoe.c (indirectchild, tahoe_operandmode): Static.
(tahoe_operandlength, tahoe_reladdr): Static.
* vax.c (indirectchild): Static.
Diffstat (limited to 'gprof/i386.c')
-rw-r--r-- | gprof/i386.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gprof/i386.c b/gprof/i386.c index 8836dc3..e30648f 100644 --- a/gprof/i386.c +++ b/gprof/i386.c @@ -22,10 +22,10 @@ #include "hist.h" #include "symtab.h" -int i386_iscall PARAMS ((unsigned char *)); +static int i386_iscall PARAMS ((unsigned char *)); void i386_find_call PARAMS ((Sym *, bfd_vma, bfd_vma)); -int +static int i386_iscall (ip) unsigned char *ip; { |