diff options
author | Andreas Jaeger <aj@suse.de> | 2001-08-21 10:02:27 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-08-21 10:02:27 +0000 |
commit | c32144ff6becdde701335c5e42182163531a8611 (patch) | |
tree | 378e3a31433791acb7a7059861fc51e8a794ffb0 /binutils/unwind-ia64.c | |
parent | 279a96ca3981d4b8c2396c26a0bbba6a02226dde (diff) | |
download | gdb-c32144ff6becdde701335c5e42182163531a8611.zip gdb-c32144ff6becdde701335c5e42182163531a8611.tar.gz gdb-c32144ff6becdde701335c5e42182163531a8611.tar.bz2 |
* coffgrok.h: Add missing parameter for prototype of coff_grok.
* sysdump.c: Add missing prototypes.
* srconv.c: Likewise.
* unwind-ia64.c: Likewise.
* coffdump.c: Likewise.
* sysinfo.y: Print prototypes, include <ansidecl.h>.
* coffgrok.c: Add missing prototypes, include libiberty.h instead
of declaring xcalloc.
Diffstat (limited to 'binutils/unwind-ia64.c')
-rw-r--r-- | binutils/unwind-ia64.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/binutils/unwind-ia64.c b/binutils/unwind-ia64.c index 5696688..8910ebb 100644 --- a/binutils/unwind-ia64.c +++ b/binutils/unwind-ia64.c @@ -33,6 +33,12 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ static bfd_vma unw_rlen = 0; +static void unw_print_brmask PARAMS ((char *, unsigned char)); +static void unw_print_grmask PARAMS ((char *, unsigned char)); +static void unw_print_frmask PARAMS ((char *, long unsigned int)); +static void unw_print_abreg PARAMS ((char *, unsigned char)); +static void unw_print_xyreg PARAMS ((char *, unsigned char, unsigned char)); + static void unw_print_brmask (cp, mask) char * cp; |