diff --git a/contrib/binutils/bfd/freebsd.h b/contrib/binutils/bfd/freebsd.h index 7e80b1ab895b..5b0ede1acb56 100644 --- a/contrib/binutils/bfd/freebsd.h +++ b/contrib/binutils/bfd/freebsd.h @@ -1,5 +1,5 @@ /* BFD back-end definitions used by all FreeBSD targets. - Copyright 1990, 1991, 1992, 1996, 1997, 2000, 2001 + Copyright 1990, 1991, 1992, 1996, 1997, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -70,13 +70,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define MY_bfd_final_link MY(bfd_final_link) #define MY_write_object_contents MY(write_object_contents) -static boolean MY(bfd_final_link) PARAMS ((bfd *, struct bfd_link_info *)); -static boolean MY(write_object_contents) PARAMS ((bfd *abfd)); +static bfd_boolean MY(bfd_final_link) PARAMS ((bfd *, struct bfd_link_info *)); +static bfd_boolean MY(write_object_contents) PARAMS ((bfd *abfd)); static long freebsd_swap_magic PARAMS ((void *ext)); #include "aout-target.h" -static boolean +static bfd_boolean MY(bfd_final_link) (abfd, info) bfd *abfd; struct bfd_link_info *info; @@ -107,7 +107,7 @@ freebsd_swap_magic (ext) Section contents have already been written. We write the file header, symbols, and relocation. */ -static boolean +static bfd_boolean MY(write_object_contents) (abfd) bfd *abfd; { @@ -140,5 +140,5 @@ MY(write_object_contents) (abfd) WRITE_HEADERS(abfd, execp); - return true; + return TRUE; }