diff options
Diffstat (limited to 'bfd/cpu-h8500.c')
-rw-r--r-- | bfd/cpu-h8500.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/bfd/cpu-h8500.c b/bfd/cpu-h8500.c index b87179b3adc..1312831d73e 100644 --- a/bfd/cpu-h8500.c +++ b/bfd/cpu-h8500.c @@ -1,5 +1,5 @@ /* BFD library support routines for the H8/500 architecture. - Copyright 1993, 1995, 1999, 2000, 2001, 2002, 2003, 2005, 2007 + Copyright 1993, 1995, 1999, 2000, 2001, 2002, 2003, 2005, 2007, 2012 Free Software Foundation, Inc. Hacked by Steve Chamberlain of Cygnus Support. @@ -25,12 +25,11 @@ #include "libbfd.h" static bfd_boolean scan_mach - PARAMS ((const struct bfd_arch_info *, const char *)); + (const struct bfd_arch_info *, const char *); static bfd_boolean -scan_mach (info, string) - const struct bfd_arch_info *info ATTRIBUTE_UNUSED; - const char *string; +scan_mach (const struct bfd_arch_info *info ATTRIBUTE_UNUSED, + const char *string) { if (strcmp (string,"h8/500") == 0) return TRUE; |