This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

header file ordering


Hans-Peter's comment about sysdep.h "seemed dependable as the first
#include in any .c file" prompted me to look at include file order
in binutils.  We really do want to process config.h first (which we
get by making sysdep.h first).  The reason is that config.h defines
_GNU_SOURCE, which can affect preprocessing of system headers.  So
including bfd.h first is somewhat dangerous.  At least, we'd need to
fix the order if bfd.h is ever to use types defined in stdint.h.

bfd/
	Many files: Include sysdep.h before bfd.h.
	* Makefile.am: Run "make dep-am".
	* Makefile.in: Regenerate.
binutils/
	* bucumm.h: Split off host dependencies to..
	* sysdep.h: ..here.
	Many files: Include sysdep.h.  Remove duplicate headers and reorder.
	* Makefile.am: Run "make dep-am".
	* Makefile.in: Regenerate.
ld/
	Many files: Include sysdep.h first.  Remove duplicate headers.
	* Makefile.am: Run "make dep-am".
	* Makefile.in: Regenerate.
opcodes/
	* Makefile.am: Run "make dep-am".
	* Makefile.in: Regenerate.
	* ns32k-dis.c: Include sysdep.h first.

Index: bfd/aix386-core.c
===================================================================
RCS file: /cvs/src/src/bfd/aix386-core.c,v
retrieving revision 1.16
diff -u -p -r1.16 aix386-core.c
--- bfd/aix386-core.c	1 Jun 2006 03:45:58 -0000	1.16
+++ bfd/aix386-core.c	26 Apr 2007 06:47:53 -0000
@@ -2,7 +2,7 @@
    This was based on trad-core.c, which was written by John Gilmore of
         Cygnus Support.
    Copyright 1988, 1989, 1991, 1992, 1993, 1994, 1996, 1998, 1999, 2000,
-   2001, 2002, 2004, 2006
+   2001, 2002, 2004, 2006, 2007
    Free Software Foundation, Inc.
    Written by Minh Tran-Le <TRANLE@INTELLICORP.COM>.
    Converted to back end form by Ian Lance Taylor <ian@cygnus.com>.
@@ -23,8 +23,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/i386.h"
 #include "coff/internal.h"
Index: bfd/aix5ppc-core.c
===================================================================
RCS file: /cvs/src/src/bfd/aix5ppc-core.c,v
retrieving revision 1.15
diff -u -p -r1.15 aix5ppc-core.c
--- bfd/aix5ppc-core.c	1 Jun 2006 03:45:58 -0000	1.15
+++ bfd/aix5ppc-core.c	26 Apr 2007 06:47:53 -0000
@@ -1,5 +1,5 @@
 /* IBM RS/6000 "XCOFF" back-end for BFD.
-   Copyright 2001, 2002, 2003, 2004, 2005, 2006
+   Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Tom Rix
    Contributed by Red Hat Inc.
@@ -21,6 +21,7 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 
 const bfd_target *xcoff64_core_p (bfd *);
@@ -30,7 +31,6 @@ int xcoff64_core_file_failing_signal (bf
 
 #ifdef AIX_5_CORE
 
-#include "sysdep.h"
 #include "libbfd.h"
 
 /* Aix 5.1 system include file.  */
Index: bfd/aout-adobe.c
===================================================================
RCS file: /cvs/src/src/bfd/aout-adobe.c,v
retrieving revision 1.27
diff -u -p -r1.27 aout-adobe.c
--- bfd/aout-adobe.c	26 Mar 2007 12:22:59 -0000	1.27
+++ bfd/aout-adobe.c	26 Apr 2007 06:47:53 -0000
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "aout/adobe.h"
 #include "aout/stab_gnu.h"
Index: bfd/aout-arm.c
===================================================================
RCS file: /cvs/src/src/bfd/aout-arm.c,v
retrieving revision 1.17
diff -u -p -r1.17 aout-arm.c
--- bfd/aout-arm.c	26 Mar 2007 12:22:59 -0000	1.17
+++ bfd/aout-arm.c	26 Apr 2007 06:47:53 -0000
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 /* Avoid multiple definitions from aoutx if supporting standard a.out
    as well as our own.  */
Index: bfd/aout-tic30.c
===================================================================
RCS file: /cvs/src/src/bfd/aout-tic30.c,v
retrieving revision 1.32
diff -u -p -r1.32 aout-tic30.c
--- bfd/aout-tic30.c	26 Mar 2007 12:22:59 -0000	1.32
+++ bfd/aout-tic30.c	26 Apr 2007 06:47:55 -0000
@@ -35,8 +35,8 @@
 #define TARGETNAME "a.out-tic30"
 #define NAME(x,y) CONCAT3 (tic30_aout,_32_,y)
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libaout.h"
 #include "aout/aout64.h"
 #include "aout/stab_gnu.h"
Index: bfd/aoutf1.h
===================================================================
RCS file: /cvs/src/src/bfd/aoutf1.h,v
retrieving revision 1.18
diff -u -p -r1.18 aoutf1.h
--- bfd/aoutf1.h	1 Jun 2006 03:45:58 -0000	1.18
+++ bfd/aoutf1.h	26 Apr 2007 06:47:59 -0000
@@ -1,6 +1,6 @@
 /* A.out "format 1" file handling code for BFD.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000,
-   2001, 2002, 2003, 2004, 2005, 2006
+   2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Cygnus Support.
 
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #include "aout/sun4.h"
Index: bfd/aoutx.h
===================================================================
RCS file: /cvs/src/src/bfd/aoutx.h,v
retrieving revision 1.63
diff -u -p -r1.63 aoutx.h
--- bfd/aoutx.h	26 Mar 2007 12:22:59 -0000	1.63
+++ bfd/aoutx.h	26 Apr 2007 06:48:01 -0000
@@ -1,6 +1,6 @@
 /* BFD semi-generic back-end for a.out binaries.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-   2000, 2001, 2002, 2003, 2004, 2005, 2006
+   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Cygnus Support.
 
@@ -118,8 +118,8 @@ DESCRIPTION
 
 #define KEEPIT udata.i
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "safe-ctype.h"
 #include "bfdlink.h"
 
Index: bfd/archive.c
===================================================================
RCS file: /cvs/src/src/bfd/archive.c,v
retrieving revision 1.47
diff -u -p -r1.47 archive.c
--- bfd/archive.c	30 Oct 2006 07:41:17 -0000	1.47
+++ bfd/archive.c	26 Apr 2007 07:44:06 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for archive files (libraries).
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-   2000, 2001, 2002, 2003, 2004, 2005, 2006
+   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Cygnus Support.  Mostly Gumby Henkel-Wallace's fault.
 
@@ -129,8 +129,8 @@ SUBSECTION
  " 18             " - Long name 18 characters long, extended pseudo-BSD.
  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "libbfd.h"
 #include "aout/ar.h"
Index: bfd/archive64.c
===================================================================
RCS file: /cvs/src/src/bfd/archive64.c,v
retrieving revision 1.7
diff -u -p -r1.7 archive64.c
--- bfd/archive64.c	16 Sep 2006 18:12:13 -0000	1.7
+++ bfd/archive64.c	26 Apr 2007 06:48:03 -0000
@@ -1,5 +1,5 @@
 /* MIPS-specific support for 64-bit ELF
-   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006
+   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006, 2007
    Free Software Foundation, Inc.
    Ian Lance Taylor, Cygnus Support
    Linker support added by Mark Mitchell, CodeSourcery, LLC.
@@ -23,8 +23,8 @@
 
 /* This file supports the 64-bit (MIPS) ELF archives.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "aout/ar.h"
 
Index: bfd/archures.c
===================================================================
RCS file: /cvs/src/src/bfd/archures.c,v
retrieving revision 1.124
diff -u -p -r1.124 archures.c
--- bfd/archures.c	23 Apr 2007 07:51:26 -0000	1.124
+++ bfd/archures.c	26 Apr 2007 06:48:03 -0000
@@ -1,6 +1,6 @@
 /* BFD library support routines for architectures.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-   2000, 2001, 2002, 2003, 2004, 2005, 2006
+   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Hacked by John Gilmore and Steve Chamberlain of Cygnus Support.
 
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "safe-ctype.h"
 
Index: bfd/bfd.c
===================================================================
RCS file: /cvs/src/src/bfd/bfd.c,v
retrieving revision 1.92
diff -u -p -r1.92 bfd.c
--- bfd/bfd.c	19 Apr 2007 10:51:34 -0000	1.92
+++ bfd/bfd.c	26 Apr 2007 06:48:04 -0000
@@ -202,10 +202,10 @@ CODE_FRAGMENT
 .
 */
 
-#include "bfd.h"
-#include "bfdver.h"
 #include "sysdep.h"
 #include <stdarg.h>
+#include "bfd.h"
+#include "bfdver.h"
 #include "libiberty.h"
 #include "demangle.h"
 #include "safe-ctype.h"
Index: bfd/bfdio.c
===================================================================
RCS file: /cvs/src/src/bfd/bfdio.c,v
retrieving revision 1.14
diff -u -p -r1.14 bfdio.c
--- bfd/bfdio.c	14 Dec 2006 02:59:25 -0000	1.14
+++ bfd/bfdio.c	26 Apr 2007 06:48:04 -0000
@@ -1,7 +1,7 @@
 /* Low-level I/O routines for BFDs.
 
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
-   1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+   1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
 
    Written by Cygnus Support.
@@ -23,12 +23,10 @@ along with this program; if not, write t
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 #include "sysdep.h"
-
+#include <limits.h>
 #include "bfd.h"
 #include "libbfd.h"
 
-#include <limits.h>
-
 #ifndef S_IXUSR
 #define S_IXUSR 0100    /* Execute by owner.  */
 #endif
Index: bfd/binary.c
===================================================================
RCS file: /cvs/src/src/bfd/binary.c,v
retrieving revision 1.31
diff -u -p -r1.31 binary.c
--- bfd/binary.c	15 Feb 2007 08:33:53 -0000	1.31
+++ bfd/binary.c	26 Apr 2007 06:48:05 -0000
@@ -32,8 +32,8 @@
    the file.  objcopy cooperates by specially setting the start
    address to zero by default.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "safe-ctype.h"
 #include "libbfd.h"
 
Index: bfd/bout.c
===================================================================
RCS file: /cvs/src/src/bfd/bout.c,v
retrieving revision 1.29
diff -u -p -r1.29 bout.c
--- bfd/bout.c	26 Mar 2007 12:22:59 -0000	1.29
+++ bfd/bout.c	26 Apr 2007 06:48:06 -0000
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "genlink.h"
Index: bfd/cache.c
===================================================================
RCS file: /cvs/src/src/bfd/cache.c,v
retrieving revision 1.28
diff -u -p -r1.28 cache.c
--- bfd/cache.c	3 Nov 2005 16:06:10 -0000	1.28
+++ bfd/cache.c	26 Apr 2007 06:48:06 -0000
@@ -1,7 +1,7 @@
 /* BFD library -- caching of file descriptors.
 
    Copyright 1990, 1991, 1992, 1993, 1994, 1996, 2000, 2001, 2002,
-   2003, 2004, 2005 Free Software Foundation, Inc.
+   2003, 2004, 2005, 2007 Free Software Foundation, Inc.
 
    Hacked by Steve Chamberlain of Cygnus Support (steve@cygnus.com).
 
@@ -40,8 +40,8 @@ SUBSECTION
 	Caching functions
 */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libiberty.h"
 
Index: bfd/cf-i386lynx.c
===================================================================
RCS file: /cvs/src/src/bfd/cf-i386lynx.c,v
retrieving revision 1.4
diff -u -p -r1.4 cf-i386lynx.c
--- bfd/cf-i386lynx.c	4 May 2005 15:53:01 -0000	1.4
+++ bfd/cf-i386lynx.c	26 Apr 2007 06:48:06 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for Intel 386 COFF LynxOS files.
-   Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 2007 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SYM	i386lynx_coff_vec
 #define TARGET_NAME	"coff-i386-lynx"
Index: bfd/cisco-core.c
===================================================================
RCS file: /cvs/src/src/bfd/cisco-core.c,v
retrieving revision 1.14
diff -u -p -r1.14 cisco-core.c
--- bfd/cisco-core.c	20 Nov 2006 02:09:56 -0000	1.14
+++ bfd/cisco-core.c	26 Apr 2007 06:48:06 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for CISCO crash dumps.
-   Copyright 1994, 1997, 1999, 2000, 2001, 2002, 2004, 2006
+   Copyright 1994, 1997, 1999, 2000, 2001, 2002, 2004, 2006, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 /* core_file_failing_signal returns a host signal (this probably should
    be fixed).  */
Index: bfd/coff-alpha.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-alpha.c,v
retrieving revision 1.34
diff -u -p -r1.34 coff-alpha.c
--- bfd/coff-alpha.c	26 Mar 2007 12:22:59 -0000	1.34
+++ bfd/coff-alpha.c	26 Apr 2007 06:48:09 -0000
@@ -20,8 +20,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "coff/internal.h"
Index: bfd/coff-apollo.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-apollo.c,v
retrieving revision 1.10
diff -u -p -r1.10 coff-apollo.c
--- bfd/coff-apollo.c	4 May 2005 15:53:02 -0000	1.10
+++ bfd/coff-apollo.c	26 Apr 2007 06:48:09 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for Apollo 68000 COFF binaries.
-   Copyright 1990, 1991, 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2003
-   Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2003,
+   2007 Free Software Foundation, Inc.
    By Troy Rollo (troy@cbme.unsw.edu.au)
    Based on m68k standard COFF version Written by Cygnus Support.
 
@@ -20,8 +20,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/apollo.h"
 #include "coff/internal.h"
Index: bfd/coff-arm.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-arm.c,v
retrieving revision 1.70
diff -u -p -r1.70 coff-arm.c
--- bfd/coff-arm.c	26 Mar 2007 12:22:59 -0000	1.70
+++ bfd/coff-arm.c	26 Apr 2007 06:48:09 -0000
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/arm.h"
 #include "coff/internal.h"
Index: bfd/coff-aux.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-aux.c,v
retrieving revision 1.6
diff -u -p -r1.6 coff-aux.c
--- bfd/coff-aux.c	4 May 2005 15:53:02 -0000	1.6
+++ bfd/coff-aux.c	26 Apr 2007 06:48:09 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for Apple M68K COFF A/UX 3.x files.
-   Copyright 1996, 1997, 2000, 2002 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 2000, 2002, 2007 Free Software Foundation, Inc.
    Written by Richard Henderson <rth@tamu.edu>.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -37,8 +37,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define COFF_COMMON_ADDEND
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 static bfd_boolean coff_m68k_aux_link_add_one_symbol
   PARAMS ((struct bfd_link_info *, bfd *, const char *, flagword,
Index: bfd/coff-h8300.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-h8300.c,v
retrieving revision 1.39
diff -u -p -r1.39 coff-h8300.c
--- bfd/coff-h8300.c	1 Jun 2006 03:45:58 -0000	1.39
+++ bfd/coff-h8300.c	26 Apr 2007 06:48:10 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for Renesas H8/300 COFF binaries.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-   2000, 2001, 2002, 2003, 2004, 2005, 2006
+   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Steve Chamberlain, <sac@cygnus.com>.
 
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "genlink.h"
Index: bfd/coff-h8500.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-h8500.c,v
retrieving revision 1.15
diff -u -p -r1.15 coff-h8500.c
--- bfd/coff-h8500.c	27 Dec 2005 03:06:27 -0000	1.15
+++ bfd/coff-h8500.c	26 Apr 2007 06:48:10 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for Renesas H8/500 COFF binaries.
-   Copyright 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
-   Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003, 2004,
+   2005, 2007 Free Software Foundation, Inc.
    Contributed by Cygnus Support.
    Written by Steve Chamberlain, <sac@cygnus.com>.
 
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "coff/h8500.h"
Index: bfd/coff-i386.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-i386.c,v
retrieving revision 1.24
diff -u -p -r1.24 coff-i386.c
--- bfd/coff-i386.c	26 Mar 2007 12:22:59 -0000	1.24
+++ bfd/coff-i386.c	26 Apr 2007 06:48:10 -0000
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #include "coff/i386.h"
Index: bfd/coff-i860.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-i860.c,v
retrieving revision 1.20
diff -u -p -r1.20 coff-i860.c
--- bfd/coff-i860.c	26 Mar 2007 12:22:59 -0000	1.20
+++ bfd/coff-i860.c	26 Apr 2007 06:48:11 -0000
@@ -20,8 +20,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #include "coff/i860.h"
Index: bfd/coff-i960.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-i960.c,v
retrieving revision 1.17
diff -u -p -r1.17 coff-i960.c
--- bfd/coff-i960.c	26 Mar 2007 12:22:59 -0000	1.17
+++ bfd/coff-i960.c	26 Apr 2007 06:48:11 -0000
@@ -22,8 +22,8 @@ Foundation, Inc., 51 Franklin Street - F
 #define I960 1
 #define BADMAG(x) I960BADMAG(x)
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/i960.h"
 #include "coff/internal.h"
Index: bfd/coff-ia64.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-ia64.c,v
retrieving revision 1.11
diff -u -p -r1.11 coff-ia64.c
--- bfd/coff-ia64.c	4 May 2005 15:53:02 -0000	1.11
+++ bfd/coff-ia64.c	26 Apr 2007 06:48:11 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for HP/Intel IA-64 COFF files.
-   Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
    Contributed by David Mosberger <davidm@hpl.hp.com>
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/ia64.h"
 #include "coff/internal.h"
Index: bfd/coff-m68k.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-m68k.c,v
retrieving revision 1.19
diff -u -p -r1.19 coff-m68k.c
--- bfd/coff-m68k.c	24 Apr 2007 13:05:46 -0000	1.19
+++ bfd/coff-m68k.c	26 Apr 2007 06:48:11 -0000
@@ -20,8 +20,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/m68k.h"
 #include "coff/internal.h"
Index: bfd/coff-m88k.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-m88k.c,v
retrieving revision 1.13
diff -u -p -r1.13 coff-m88k.c
--- bfd/coff-m88k.c	4 May 2005 15:53:02 -0000	1.13
+++ bfd/coff-m88k.c	26 Apr 2007 06:48:11 -0000
@@ -1,7 +1,6 @@
 /* BFD back-end for Motorola 88000 COFF "Binary Compatibility Standard" files.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1998, 1999, 2000,
-   2001, 2002, 2003
-   Free Software Foundation, Inc.
+   2001, 2002, 2003, 2007  Free Software Foundation, Inc.
    Written by Cygnus Support.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -21,8 +20,8 @@ along with this program; if not, write t
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 #define M88 1		/* Customize various include files */
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/m88k.h"
 #include "coff/internal.h"
Index: bfd/coff-maxq.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-maxq.c,v
retrieving revision 1.5
diff -u -p -r1.5 coff-maxq.c
--- bfd/coff-maxq.c	26 Mar 2007 12:22:59 -0000	1.5
+++ bfd/coff-maxq.c	26 Apr 2007 06:48:12 -0000
@@ -22,8 +22,8 @@
    with this program; if not, write to the Free Software Foundation, Inc., 
    51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/maxq.h"
 #include "coff/internal.h"
Index: bfd/coff-mcore.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-mcore.c,v
retrieving revision 1.36
diff -u -p -r1.36 coff-mcore.c
--- bfd/coff-mcore.c	26 Mar 2007 12:22:59 -0000	1.36
+++ bfd/coff-mcore.c	26 Apr 2007 06:48:12 -0000
@@ -19,8 +19,8 @@ along with this program; if not, write t
 Foundation, 51 Franklin Street - Fifth Floor,
 Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/mcore.h"
 #include "coff/internal.h"
Index: bfd/coff-mips.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-mips.c,v
retrieving revision 1.31
diff -u -p -r1.31 coff-mips.c
--- bfd/coff-mips.c	26 Mar 2007 12:22:59 -0000	1.31
+++ bfd/coff-mips.c	26 Apr 2007 06:48:13 -0000
@@ -21,8 +21,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "coff/internal.h"
Index: bfd/coff-or32.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-or32.c,v
retrieving revision 1.11
diff -u -p -r1.11 coff-or32.c
--- bfd/coff-or32.c	4 May 2006 05:05:25 -0000	1.11
+++ bfd/coff-or32.c	26 Apr 2007 06:48:13 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for OpenRISC 1000 COFF binaries.
-   Copyright 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+   Copyright 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
    Contributed by Ivan Guzvinec  <ivang@opencores.org>
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -20,8 +20,8 @@
 
 #define OR32 1
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/or32.h"
 #include "coff/internal.h"
Index: bfd/coff-pmac.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-pmac.c,v
retrieving revision 1.8
diff -u -p -r1.8 coff-pmac.c
--- bfd/coff-pmac.c	4 May 2005 15:53:02 -0000	1.8
+++ bfd/coff-pmac.c	26 Apr 2007 06:48:13 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for Apple et al PowerPC Mac "XCOFF" files.
-   Copyright 1995, 2000, 2001 Free Software Foundation, Inc.
+   Copyright 1995, 2000, 2001, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -24,8 +24,8 @@ Foundation, Inc., 51 Franklin Street - F
 #define TARGET_SYM	pmac_xcoff_vec
 #define TARGET_NAME	"xcoff-powermac"
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/internal.h"
 #include "coff/rs6000.h"
Index: bfd/coff-ppc.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-ppc.c,v
retrieving revision 1.31
diff -u -p -r1.31 coff-ppc.c
--- bfd/coff-ppc.c	26 Mar 2007 12:22:59 -0000	1.31
+++ bfd/coff-ppc.c	26 Apr 2007 06:48:15 -0000
@@ -33,9 +33,8 @@
    - dlltool will not produce correct output in some .reloc cases, and will
      not produce the right glue code for dll function calls.  */
 
-#include "bfd.h"
 #include "sysdep.h"
-
+#include "bfd.h"
 #include "libbfd.h"
 
 #include "coff/powerpc.h"
Index: bfd/coff-rs6000.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-rs6000.c,v
retrieving revision 1.78
diff -u -p -r1.78 coff-rs6000.c
--- bfd/coff-rs6000.c	26 Mar 2007 12:22:59 -0000	1.78
+++ bfd/coff-rs6000.c	26 Apr 2007 06:48:17 -0000
@@ -26,8 +26,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "coff/internal.h"
Index: bfd/coff-sh.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-sh.c,v
retrieving revision 1.35
diff -u -p -r1.35 coff-sh.c
--- bfd/coff-sh.c	26 Mar 2007 12:22:59 -0000	1.35
+++ bfd/coff-sh.c	26 Apr 2007 06:48:18 -0000
@@ -21,8 +21,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "libbfd.h"
 #include "bfdlink.h"
Index: bfd/coff-sparc.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-sparc.c,v
retrieving revision 1.15
diff -u -p -r1.15 coff-sparc.c
--- bfd/coff-sparc.c	26 Mar 2007 12:22:59 -0000	1.15
+++ bfd/coff-sparc.c	26 Apr 2007 06:48:19 -0000
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/sparc.h"
 #include "coff/internal.h"
Index: bfd/coff-tic30.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-tic30.c,v
retrieving revision 1.11
diff -u -p -r1.11 coff-tic30.c
--- bfd/coff-tic30.c	26 Mar 2007 12:22:59 -0000	1.11
+++ bfd/coff-tic30.c	26 Apr 2007 06:48:19 -0000
@@ -20,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "coff/tic30.h"
Index: bfd/coff-tic4x.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-tic4x.c,v
retrieving revision 1.13
diff -u -p -r1.13 coff-tic4x.c
--- bfd/coff-tic4x.c	26 Mar 2007 12:22:59 -0000	1.13
+++ bfd/coff-tic4x.c	26 Apr 2007 06:48:19 -0000
@@ -21,8 +21,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "coff/tic4x.h"
Index: bfd/coff-tic54x.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-tic54x.c,v
retrieving revision 1.21
diff -u -p -r1.21 coff-tic54x.c
--- bfd/coff-tic54x.c	26 Mar 2007 12:22:59 -0000	1.21
+++ bfd/coff-tic54x.c	26 Apr 2007 06:48:19 -0000
@@ -20,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "coff/tic54x.h"
Index: bfd/coff-tic80.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-tic80.c,v
retrieving revision 1.19
diff -u -p -r1.19 coff-tic80.c
--- bfd/coff-tic80.c	8 May 2005 23:48:38 -0000	1.19
+++ bfd/coff-tic80.c	26 Apr 2007 06:48:19 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for Texas Instruments TMS320C80 Multimedia Video Processor (MVP).
-   Copyright 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
+   Copyright 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007
    Free Software Foundation, Inc.
 
    Written by Fred Fish (fnf@cygnus.com)
@@ -24,9 +24,9 @@ along with this program; if not, write t
 Foundation, 51 Franklin Street - Fifth Floor,
 Boston, MA 02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "bfdlink.h"
-#include "sysdep.h"
 #include "libbfd.h"
 #ifdef _CONST
 /* Newlib-based hosts define _CONST as a STDC-safe alias for const,
Index: bfd/coff-w65.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-w65.c,v
retrieving revision 1.17
diff -u -p -r1.17 coff-w65.c
--- bfd/coff-w65.c	3 May 2006 14:26:40 -0000	1.17
+++ bfd/coff-w65.c	26 Apr 2007 06:48:19 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for WDC 65816 COFF binaries.
    Copyright 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
-   2006 Free Software Foundation, Inc.
+   2006, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain, <sac@cygnus.com>.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "coff/w65.h"
Index: bfd/coff-we32k.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-we32k.c,v
retrieving revision 1.10
diff -u -p -r1.10 coff-we32k.c
--- bfd/coff-we32k.c	4 May 2005 15:53:04 -0000	1.10
+++ bfd/coff-we32k.c	26 Apr 2007 06:48:19 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for we32k COFF files.
-   Copyright 1992, 1993, 1994, 1999, 2000, 2002, 2003
+   Copyright 1992, 1993, 1994, 1999, 2000, 2002, 2003, 2007
    Free Software Foundation, Inc.
    Contributed by Brendan Kehoe (brendan@cs.widener.edu).
 
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/we32k.h"
 #include "coff/internal.h"
Index: bfd/coff-x86_64.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-x86_64.c,v
retrieving revision 1.2
diff -u -p -r1.2 coff-x86_64.c
--- bfd/coff-x86_64.c	26 Mar 2007 12:22:59 -0000	1.2
+++ bfd/coff-x86_64.c	26 Apr 2007 06:48:20 -0000
@@ -23,8 +23,8 @@
 #define COFF_WITH_pex64
 #endif
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/x86_64.h"
 #include "coff/internal.h"
Index: bfd/coff-z80.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-z80.c,v
retrieving revision 1.4
diff -u -p -r1.4 coff-z80.c
--- bfd/coff-z80.c	26 Mar 2007 12:22:59 -0000	1.4
+++ bfd/coff-z80.c	26 Apr 2007 06:48:20 -0000
@@ -19,8 +19,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "coff/z80.h"
Index: bfd/coff-z8k.c
===================================================================
RCS file: /cvs/src/src/bfd/coff-z8k.c,v
retrieving revision 1.22
diff -u -p -r1.22 coff-z8k.c
--- bfd/coff-z8k.c	26 Mar 2007 12:22:59 -0000	1.22
+++ bfd/coff-z8k.c	26 Apr 2007 06:48:21 -0000
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "coff/z8k.h"
Index: bfd/coff64-rs6000.c
===================================================================
RCS file: /cvs/src/src/bfd/coff64-rs6000.c,v
retrieving revision 1.68
diff -u -p -r1.68 coff64-rs6000.c
--- bfd/coff64-rs6000.c	26 Mar 2007 12:22:59 -0000	1.68
+++ bfd/coff64-rs6000.c	26 Apr 2007 06:48:22 -0000
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "coff/internal.h"
Index: bfd/coffgen.c
===================================================================
RCS file: /cvs/src/src/bfd/coffgen.c,v
retrieving revision 1.56
diff -u -p -r1.56 coffgen.c
--- bfd/coffgen.c	2 Apr 2007 16:51:13 -0000	1.56
+++ bfd/coffgen.c	26 Apr 2007 06:48:23 -0000
@@ -1,6 +1,6 @@
 /* Support for the generic parts of COFF, for BFD.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-   2000, 2001, 2002, 2003, 2004, 2005
+   2000, 2001, 2002, 2003, 2004, 2005, 2007
    Free Software Foundation, Inc.
    Written by Cygnus Support.
 
@@ -37,8 +37,8 @@
    Those functions may not use any COFF specific information, such as
    coff_data (abfd).  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/internal.h"
 #include "libcoff.h"
Index: bfd/cofflink.c
===================================================================
RCS file: /cvs/src/src/bfd/cofflink.c,v
retrieving revision 1.62
diff -u -p -r1.62 cofflink.c
--- bfd/cofflink.c	17 Sep 2006 14:38:51 -0000	1.62
+++ bfd/cofflink.c	26 Apr 2007 06:48:27 -0000
@@ -1,6 +1,6 @@
 /* COFF specific linker code.
    Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
-   2004, 2005, 2006 Free Software Foundation, Inc.
+   2004, 2005, 2006, 2007 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -21,8 +21,8 @@
 
 /* This file contains the COFF backend linker code.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "coff/internal.h"
Index: bfd/corefile.c
===================================================================
RCS file: /cvs/src/src/bfd/corefile.c,v
retrieving revision 1.13
diff -u -p -r1.13 corefile.c
--- bfd/corefile.c	27 Dec 2005 04:19:15 -0000	1.13
+++ bfd/corefile.c	26 Apr 2007 06:48:31 -0000
@@ -1,6 +1,6 @@
 /* Core file generic interface routines for BFD.
-   Copyright 1990, 1991, 1992, 1993, 1994, 2000, 2001, 2002, 2003, 2005
-   Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 2000, 2001, 2002, 2003, 2005,
+   2007 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -30,8 +30,8 @@ DESCRIPTION
 	These are functions pertaining to core files.
 */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 /*
Index: bfd/cpu-alpha.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-alpha.c,v
retrieving revision 1.8
diff -u -p -r1.8 cpu-alpha.c
--- bfd/cpu-alpha.c	4 May 2005 15:53:05 -0000	1.8
+++ bfd/cpu-alpha.c	26 Apr 2007 06:48:31 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Alpha architecture.
-   Copyright 1992, 1993, 1998, 2000, 2002, 2003
+   Copyright 1992, 1993, 1998, 2000, 2002, 2003, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define N(BITS_WORD, BITS_ADDR, NUMBER, PRINT, DEFAULT, NEXT) \
Index: bfd/cpu-arc.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-arc.c,v
retrieving revision 1.8
diff -u -p -r1.8 cpu-arc.c
--- bfd/cpu-arc.c	4 May 2005 15:53:05 -0000	1.8
+++ bfd/cpu-arc.c	26 Apr 2007 06:48:31 -0000
@@ -1,5 +1,6 @@
 /* BFD support for the ARC processor
-   Copyright 1994, 1995, 1997, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1997, 2001, 2002, 2007
+   Free Software Foundation, Inc.
    Contributed by Doug Evans (dje@cygnus.com).
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define ARC(mach, print_name, default_p, next) \
Index: bfd/cpu-arm.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-arm.c,v
retrieving revision 1.23
diff -u -p -r1.23 cpu-arm.c
--- bfd/cpu-arm.c	26 Sep 2006 12:04:43 -0000	1.23
+++ bfd/cpu-arm.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the ARM processor
-   Copyright 1994, 1997, 1999, 2000, 2002, 2003, 2004, 2005
+   Copyright 1994, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2007
    Free Software Foundation, Inc.
    Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
 
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libiberty.h"
 
Index: bfd/cpu-avr.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-avr.c,v
retrieving revision 1.10
diff -u -p -r1.10 cpu-avr.c
--- bfd/cpu-avr.c	24 May 2006 07:36:09 -0000	1.10
+++ bfd/cpu-avr.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD library support routines for the AVR architecture.
-   Copyright 1999, 2000, 2002, 2006 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2002, 2006, 2007 Free Software Foundation, Inc.
    Contributed by Denis Chertykov <denisc@overta.ru>
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 /* This routine is provided two arch_infos and works out which AVR
Index: bfd/cpu-bfin.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-bfin.c,v
retrieving revision 1.1
diff -u -p -r1.1 cpu-bfin.c
--- bfd/cpu-bfin.c	30 Sep 2005 15:36:41 -0000	1.1
+++ bfd/cpu-bfin.c	26 Apr 2007 06:48:32 -0000
@@ -1,6 +1,6 @@
 /* BFD Support for the ADI Blackfin processor.
 
-   Copyright 2005 Free Software Foundation, Inc.
+   Copyright 2005, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -19,8 +19,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301,
    USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_bfin_arch =
Index: bfd/cpu-cr16c.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-cr16c.c,v
retrieving revision 1.3
diff -u -p -r1.3 cpu-cr16c.c
--- bfd/cpu-cr16c.c	4 May 2005 15:53:06 -0000	1.3
+++ bfd/cpu-cr16c.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the CR16C processor.
-   Copyright 2004 Free Software Foundation, Inc.
+   Copyright 2004, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_cr16c_arch =
Index: bfd/cpu-cris.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-cris.c,v
retrieving revision 1.10
diff -u -p -r1.10 cpu-cris.c
--- bfd/cpu-cris.c	4 May 2005 15:53:06 -0000	1.10
+++ bfd/cpu-cris.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,6 @@
 /* BFD support for the Axis CRIS architecture.
-   Copyright 2000, 2002, 2004, 2005 Free Software Foundation, Inc.
+   Copyright 2000, 2002, 2004, 2005, 2007
+   Free Software Foundation, Inc.
    Contributed by Axis Communications AB.
    Written by Hans-Peter Nilsson.
 
@@ -19,8 +20,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 /* This routine is provided two arch_infos and returns the lowest common
Index: bfd/cpu-crx.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-crx.c,v
retrieving revision 1.3
diff -u -p -r1.3 cpu-crx.c
--- bfd/cpu-crx.c	4 May 2005 15:53:06 -0000	1.3
+++ bfd/cpu-crx.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the CRX processor.
-   Copyright 2004 Free Software Foundation, Inc.
+   Copyright 2004, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 
Index: bfd/cpu-d10v.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-d10v.c,v
retrieving revision 1.8
diff -u -p -r1.8 cpu-d10v.c
--- bfd/cpu-d10v.c	1 Jul 2005 11:16:28 -0000	1.8
+++ bfd/cpu-d10v.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,6 @@
 /* BFD support for the D10V processor
-   Copyright 1996, 1999, 2000, 2002, 2005 Free Software Foundation, Inc.
+   Copyright 1996, 1999, 2000, 2002, 2005, 2007
+   Free Software Foundation, Inc.
    Contributed by Martin Hunt (hunt@cygnus.com).
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static const bfd_arch_info_type d10v_ts3_info =
Index: bfd/cpu-d30v.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-d30v.c,v
retrieving revision 1.5
diff -u -p -r1.5 cpu-d30v.c
--- bfd/cpu-d30v.c	1 Jul 2005 11:16:28 -0000	1.5
+++ bfd/cpu-d30v.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Mitsubishi D30V processor
-   Copyright 1997, 2002, 2005 Free Software Foundation, Inc.
+   Copyright 1997, 2002, 2005, 2007 Free Software Foundation, Inc.
    Contributed by Martin Hunt (hunt@cygnus.com).
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_d30v_arch =
Index: bfd/cpu-dlx.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-dlx.c,v
retrieving revision 1.4
diff -u -p -r1.4 cpu-dlx.c
--- bfd/cpu-dlx.c	4 May 2005 15:53:06 -0000	1.4
+++ bfd/cpu-dlx.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the DLX Microprocessor architecture.
-   Copyright 2002 Free Software Foundation, Inc.
+   Copyright 2002, 2007 Free Software Foundation, Inc.
    Hacked by Kuang Hwa Lin <kuang@sbcglobal.net>
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_dlx_arch =
Index: bfd/cpu-fr30.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-fr30.c,v
retrieving revision 1.5
diff -u -p -r1.5 cpu-fr30.c
--- bfd/cpu-fr30.c	4 May 2005 15:53:06 -0000	1.5
+++ bfd/cpu-fr30.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the FR30 processor.
-   Copyright 1998, 2002 Free Software Foundation, Inc.
+   Copyright 1998, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_fr30_arch =
Index: bfd/cpu-frv.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-frv.c,v
retrieving revision 1.9
diff -u -p -r1.9 cpu-frv.c
--- bfd/cpu-frv.c	4 May 2005 15:53:06 -0000	1.9
+++ bfd/cpu-frv.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the FRV processor.
-   Copyright 2002, 2003, 2004 Free Software Foundation, Inc.
+   Copyright 2002, 2003, 2004, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define FRV_ARCH(MACHINE, NAME, DEFAULT, NEXT)				\
Index: bfd/cpu-h8300.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-h8300.c,v
retrieving revision 1.21
diff -u -p -r1.21 cpu-h8300.c
--- bfd/cpu-h8300.c	4 May 2005 15:53:06 -0000	1.21
+++ bfd/cpu-h8300.c	26 Apr 2007 06:48:32 -0000
@@ -1,6 +1,6 @@
 /* BFD library support routines for the Renesas H8/300 architecture.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 2000, 2001, 2002,
-   2003, 2004 Free Software Foundation, Inc.
+   2003, 2004, 2007 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static bfd_boolean
Index: bfd/cpu-h8500.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-h8500.c,v
retrieving revision 1.13
diff -u -p -r1.13 cpu-h8500.c
--- bfd/cpu-h8500.c	4 May 2005 15:53:06 -0000	1.13
+++ bfd/cpu-h8500.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD library support routines for the H8/500 architecture.
-   Copyright 1993, 1995, 1999, 2000, 2001, 2002, 2003, 2005
+   Copyright 1993, 1995, 1999, 2000, 2001, 2002, 2003, 2005, 2007
    Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static bfd_boolean scan_mach
Index: bfd/cpu-hppa.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-hppa.c,v
retrieving revision 1.9
diff -u -p -r1.9 cpu-hppa.c
--- bfd/cpu-hppa.c	4 May 2005 15:53:06 -0000	1.9
+++ bfd/cpu-hppa.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the HP Precision Architecture architecture.
-   Copyright 1992, 1995, 1998, 1999, 2000, 2002, 2003
+   Copyright 1992, 1995, 1998, 1999, 2000, 2002, 2003, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static const bfd_arch_info_type bfd_hppa10_arch =
Index: bfd/cpu-i370.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-i370.c,v
retrieving revision 1.9
diff -u -p -r1.9 cpu-i370.c
--- bfd/cpu-i370.c	1 Jul 2005 11:16:29 -0000	1.9
+++ bfd/cpu-i370.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD i370 CPU definition
-   Copyright 1994, 1995, 1996, 1998, 1999, 2000, 2002, 2005
+   Copyright 1994, 1995, 1996, 1998, 1999, 2000, 2002, 2005, 2007
    Free Software Foundation, Inc.
    Contributed by Ian Lance Taylor, Cygnus Support.
    Hacked by Linas Vepstas <linas@linas.org> in 1998, 1999
@@ -21,8 +21,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static const bfd_arch_info_type arch_info_struct[] =
Index: bfd/cpu-i386.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-i386.c,v
retrieving revision 1.13
diff -u -p -r1.13 cpu-i386.c
--- bfd/cpu-i386.c	4 May 2005 15:53:06 -0000	1.13
+++ bfd/cpu-i386.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Intel 386 architecture.
-   Copyright 1992, 1994, 1995, 1996, 1998, 2000, 2001, 2002, 2004
+   Copyright 1992, 1994, 1995, 1996, 1998, 2000, 2001, 2002, 2004, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_x86_64_arch_intel_syntax =
Index: bfd/cpu-i860.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-i860.c,v
retrieving revision 1.5
diff -u -p -r1.5 cpu-i860.c
--- bfd/cpu-i860.c	4 May 2005 15:53:06 -0000	1.5
+++ bfd/cpu-i860.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,6 @@
 /* BFD support for the Intel 860 architecture.
-   Copyright 1992, 1995, 2000, 2002 Free Software Foundation, Inc.
+   Copyright 1992, 1995, 2000, 2002, 2007
+   Free Software Foundation, Inc.
    Created mostly by substituting "860" for "386" in cpu-i386.c
    Harry Dolan <dolan@ssd.intel.com>, October 1995
 
@@ -19,8 +20,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_i860_arch =
Index: bfd/cpu-i960.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-i960.c,v
retrieving revision 1.10
diff -u -p -r1.10 cpu-i960.c
--- bfd/cpu-i960.c	16 Sep 2006 18:12:13 -0000	1.10
+++ bfd/cpu-i960.c	26 Apr 2007 06:48:32 -0000
@@ -1,6 +1,6 @@
 /* BFD library support routines for the i960 architecture.
-   Copyright 1990, 1991, 1993, 1994, 1996, 1999, 2000, 2001, 2002, 2006
-   Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1993, 1994, 1996, 1999, 2000, 2001, 2002, 2006,
+   2007 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static bfd_boolean scan_960_mach
Index: bfd/cpu-ia64.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-ia64.c,v
retrieving revision 1.7
diff -u -p -r1.7 cpu-ia64.c
--- bfd/cpu-ia64.c	4 May 2005 15:53:06 -0000	1.7
+++ bfd/cpu-ia64.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the ia64 architecture.
-   Copyright 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000, 2002, 2007 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_ia64_elf32_arch =
Index: bfd/cpu-ip2k.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-ip2k.c,v
retrieving revision 1.4
diff -u -p -r1.4 cpu-ip2k.c
--- bfd/cpu-ip2k.c	4 May 2005 15:53:06 -0000	1.4
+++ bfd/cpu-ip2k.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Scenix IP2xxx processor.
-   Copyright 2000, 2002 Free Software Foundation, Inc.
+   Copyright 2000, 2002, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_ip2k_nonext_arch =
Index: bfd/cpu-iq2000.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-iq2000.c,v
retrieving revision 1.4
diff -u -p -r1.4 cpu-iq2000.c
--- bfd/cpu-iq2000.c	4 May 2005 15:53:06 -0000	1.4
+++ bfd/cpu-iq2000.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Vitesse IQ2000 processor.
-   Copyright (C) 2003 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static const bfd_arch_info_type arch_info_struct[] =
Index: bfd/cpu-m10200.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-m10200.c,v
retrieving revision 1.4
diff -u -p -r1.4 cpu-m10200.c
--- bfd/cpu-m10200.c	4 May 2005 15:53:06 -0000	1.4
+++ bfd/cpu-m10200.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Matsushita 10200 processor
-   Copyright 1996, 1997, 2002 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_mn10200_arch =
Index: bfd/cpu-m10300.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-m10300.c,v
retrieving revision 1.11
diff -u -p -r1.11 cpu-m10300.c
--- bfd/cpu-m10300.c	4 May 2005 15:53:06 -0000	1.11
+++ bfd/cpu-m10300.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Matsushita 10300 processor
-   Copyright 1996, 1997, 1999, 2000, 2002, 2003
+   Copyright 1996, 1997, 1999, 2000, 2002, 2003, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_am33_2_arch =
Index: bfd/cpu-m32c.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-m32c.c,v
retrieving revision 1.1
diff -u -p -r1.1 cpu-m32c.c
--- bfd/cpu-m32c.c	14 Jul 2005 22:51:55 -0000	1.1
+++ bfd/cpu-m32c.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the M16C/M32C processors.
-   Copyright (C) 2004 Free Software Foundation, Inc.
+   Copyright (C) 2004, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static const bfd_arch_info_type arch_info_struct[] =
Index: bfd/cpu-m32r.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-m32r.c,v
retrieving revision 1.8
diff -u -p -r1.8 cpu-m32r.c
--- bfd/cpu-m32r.c	4 May 2005 15:53:06 -0000	1.8
+++ bfd/cpu-m32r.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,6 @@
 /* BFD support for the M32R processor.
-   Copyright 1996, 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
+   Copyright 1996, 1999, 2000, 2002, 2003, 2007
+   Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define N(number, print, default, next)  \
Index: bfd/cpu-m68hc11.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-m68hc11.c,v
retrieving revision 1.7
diff -u -p -r1.7 cpu-m68hc11.c
--- bfd/cpu-m68hc11.c	4 May 2005 15:53:06 -0000	1.7
+++ bfd/cpu-m68hc11.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Motorola 68HC11 processor
-   Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_m68hc11_arch =
Index: bfd/cpu-m68hc12.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-m68hc12.c,v
retrieving revision 1.6
diff -u -p -r1.6 cpu-m68hc12.c
--- bfd/cpu-m68hc12.c	4 May 2005 15:53:06 -0000	1.6
+++ bfd/cpu-m68hc12.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Motorola 68HC12 processor
-   Copyright 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2002, 2003, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_m68hc12s_arch =
Index: bfd/cpu-m68k.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-m68k.c,v
retrieving revision 1.17
diff -u -p -r1.17 cpu-m68k.c
--- bfd/cpu-m68k.c	23 Apr 2007 07:51:26 -0000	1.17
+++ bfd/cpu-m68k.c	26 Apr 2007 06:48:32 -0000
@@ -1,6 +1,6 @@
 /* BFD library support routines for architectures.
    Copyright 1990, 1991, 1992, 1993, 1994, 1997, 1998, 2000, 2001, 2002,
-   2003, 2004, 2006 Free Software Foundation, Inc.
+   2003, 2004, 2006, 2007 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "opcode/m68k.h"
 
Index: bfd/cpu-m88k.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-m88k.c,v
retrieving revision 1.6
diff -u -p -r1.6 cpu-m88k.c
--- bfd/cpu-m88k.c	4 May 2005 15:53:06 -0000	1.6
+++ bfd/cpu-m88k.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,6 @@
 /* bfd back-end for m88k support
-   Copyright 1990, 1991, 1994, 2000, 2002 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1994, 2000, 2002, 2007
+   Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_m88k_arch =
Index: bfd/cpu-maxq.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-maxq.c,v
retrieving revision 1.4
diff -u -p -r1.4 cpu-maxq.c
--- bfd/cpu-maxq.c	4 May 2005 15:53:06 -0000	1.4
+++ bfd/cpu-maxq.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the MAXQ20/10 architecture.
-   Copyright  2004, 2005  Free Software Foundation, Inc.
+   Copyright 2004, 2005, 2007 Free Software Foundation, Inc.
 
    Written by Vineet Sharma(vineets@noida.hcltech.com)
 	      Inderpreet Singh(inderpreetb@noida.hcltech.com)		
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 /* MAXQ Archtecture info.  */
Index: bfd/cpu-mcore.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-mcore.c,v
retrieving revision 1.8
diff -u -p -r1.8 cpu-mcore.c
--- bfd/cpu-mcore.c	4 May 2005 15:53:06 -0000	1.8
+++ bfd/cpu-mcore.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD library support routines for Motorola's MCore architecture
-   Copyright 1993, 1999, 2000, 2002 Free Software Foundation, Inc.
+   Copyright 1993, 1999, 2000, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_mcore_arch =
Index: bfd/cpu-mep.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-mep.c,v
retrieving revision 1.1
diff -u -p -r1.1 cpu-mep.c
--- bfd/cpu-mep.c	5 Feb 2007 19:50:12 -0000	1.1
+++ bfd/cpu-mep.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Toshiba Media Engine Processor.
-   Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2002, 2004, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define MA(x, n, def, y) { 32, 32, 8, bfd_arch_mep, x, "mep", n, \
Index: bfd/cpu-mips.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-mips.c,v
retrieving revision 1.25
diff -u -p -r1.25 cpu-mips.c
--- bfd/cpu-mips.c	4 May 2005 15:53:06 -0000	1.25
+++ bfd/cpu-mips.c	26 Apr 2007 06:48:32 -0000
@@ -1,6 +1,6 @@
 /* bfd back-end for mips support
    Copyright 1990, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001,
-   2002, 2003, 2004 Free Software Foundation, Inc.
+   2002, 2003, 2004, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static const bfd_arch_info_type *mips_compatible
Index: bfd/cpu-mmix.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-mmix.c,v
retrieving revision 1.4
diff -u -p -r1.4 cpu-mmix.c
--- bfd/cpu-mmix.c	4 May 2005 15:53:06 -0000	1.4
+++ bfd/cpu-mmix.c	26 Apr 2007 06:48:32 -0000
@@ -1,5 +1,5 @@
 /* BFD library support routines for MMIX.
-   Copyright 2001, 2002 Free Software Foundation, Inc.
+   Copyright 2001, 2002, 2007 Free Software Foundation, Inc.
    Contributed by Hans-Peter Nilsson (hp@bitrange.com)
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type
Index: bfd/cpu-msp430.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-msp430.c,v
retrieving revision 1.6
diff -u -p -r1.6 cpu-msp430.c
--- bfd/cpu-msp430.c	9 Aug 2005 08:57:34 -0000	1.6
+++ bfd/cpu-msp430.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD library support routines for the MSP architecture.
-   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2003, 2007 Free Software Foundation, Inc.
    Contributed by Dmitry Diky <diwil@mail.ru>
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static const bfd_arch_info_type *compatible
Index: bfd/cpu-mt.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-mt.c,v
retrieving revision 1.2
diff -u -p -r1.2 cpu-mt.c
--- bfd/cpu-mt.c	16 Dec 2005 10:23:06 -0000	1.2
+++ bfd/cpu-mt.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Morpho Technologies MT processor.
-   Copyright (C) 2001, 2002, 2005 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2002, 2005, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type arch_info_struct[] =
Index: bfd/cpu-ns32k.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-ns32k.c,v
retrieving revision 1.19
diff -u -p -r1.19 cpu-ns32k.c
--- bfd/cpu-ns32k.c	4 May 2005 15:53:06 -0000	1.19
+++ bfd/cpu-ns32k.c	26 Apr 2007 06:48:33 -0000
@@ -1,6 +1,6 @@
 /* BFD support for the ns32k architecture.
    Copyright 1990, 1991, 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003,
-   2004, 2005 Free Software Foundation, Inc.
+   2004, 2005, 2007 Free Software Foundation, Inc.
    Almost totally rewritten by Ian Dall from initial work
    by Andrew Cagney.
 
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "ns32k.h"
 
Index: bfd/cpu-openrisc.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-openrisc.c,v
retrieving revision 1.4
diff -u -p -r1.4 cpu-openrisc.c
--- bfd/cpu-openrisc.c	4 May 2005 15:53:06 -0000	1.4
+++ bfd/cpu-openrisc.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the OpenRISC architecture.
-   Copyright 2001, 2002 Free Software Foundation, Inc.
+   Copyright 2001, 2002, 2007 Free Software Foundation, Inc.
    Contributed by Johan Rydberg, jrydberg@opencores.org
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define N(BITS_WORD, BITS_ADDR, NUMBER, PRINT, DEFAULT, NEXT) \
Index: bfd/cpu-or32.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-or32.c,v
retrieving revision 1.4
diff -u -p -r1.4 cpu-or32.c
--- bfd/cpu-or32.c	4 May 2005 15:53:06 -0000	1.4
+++ bfd/cpu-or32.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the OpenRISC 1000 architecture.
-   Copyright 2002 Free Software Foundation, Inc.
+   Copyright 2002, 2007 Free Software Foundation, Inc.
    Contributed by Ivan Guzvinec  <ivang@opencores.org>
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_or32_arch =
Index: bfd/cpu-pdp11.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-pdp11.c,v
retrieving revision 1.6
diff -u -p -r1.6 cpu-pdp11.c
--- bfd/cpu-pdp11.c	4 May 2005 15:53:06 -0000	1.6
+++ bfd/cpu-pdp11.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for PDP-11 support.
-   Copyright 2001, 2002 Free Software Foundation, Inc.
+   Copyright 2001, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_pdp11_arch =
Index: bfd/cpu-pj.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-pj.c,v
retrieving revision 1.8
diff -u -p -r1.8 cpu-pj.c
--- bfd/cpu-pj.c	4 May 2005 15:53:06 -0000	1.8
+++ bfd/cpu-pj.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD library support routines for the Pico Java architecture.
-   Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Transmeta. sac@pobox.com
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_pj_arch =
Index: bfd/cpu-powerpc.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-powerpc.c,v
retrieving revision 1.18
diff -u -p -r1.18 cpu-powerpc.c
--- bfd/cpu-powerpc.c	6 Dec 2005 12:10:26 -0000	1.18
+++ bfd/cpu-powerpc.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD PowerPC CPU definition
-   Copyright 1994, 1995, 1996, 2000, 2001, 2002, 2003
+   Copyright 1994, 1995, 1996, 2000, 2001, 2002, 2003, 2007
    Free Software Foundation, Inc.
    Contributed by Ian Lance Taylor, Cygnus Support.
 
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 /* The common PowerPC architecture is compatible with the RS/6000.  */
Index: bfd/cpu-rs6000.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-rs6000.c,v
retrieving revision 1.9
diff -u -p -r1.9 cpu-rs6000.c
--- bfd/cpu-rs6000.c	4 May 2005 15:53:06 -0000	1.9
+++ bfd/cpu-rs6000.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for rs6000 support
-   Copyright 1990, 1991, 1993, 1995, 2000, 2002, 2003
+   Copyright 1990, 1991, 1993, 1995, 2000, 2002, 2003, 2007
    Free Software Foundation, Inc.
    FIXME: Can someone provide a transliteration of this name into ASCII?
    Using the following chars caused a compiler warning on HIUX (so I replaced
@@ -24,8 +24,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 /* The RS/6000 architecture is compatible with the PowerPC common
Index: bfd/cpu-s390.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-s390.c,v
retrieving revision 1.7
diff -u -p -r1.7 cpu-s390.c
--- bfd/cpu-s390.c	4 May 2005 15:53:06 -0000	1.7
+++ bfd/cpu-s390.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the s390 processor.
-   Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
    Contributed by Carl B. Pedersen and Martin Schwidefsky.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_s390_64_arch =
Index: bfd/cpu-score.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-score.c,v
retrieving revision 1.1
diff -u -p -r1.1 cpu-score.c
--- bfd/cpu-score.c	16 Sep 2006 23:51:50 -0000	1.1
+++ bfd/cpu-score.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the score processor
-   Copyright 2006 Free Software Foundation, Inc.   
+   Copyright 2006, 2007 Free Software Foundation, Inc.   
    Contributed by
    Mei Ligang (ligang@sunnorth.com.cn)
    Pei-Lin Tsai (pltsai@sunplus.com)  
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type
Index: bfd/cpu-sh.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-sh.c,v
retrieving revision 1.20
diff -u -p -r1.20 cpu-sh.c
--- bfd/cpu-sh.c	4 May 2005 15:53:06 -0000	1.20
+++ bfd/cpu-sh.c	26 Apr 2007 06:48:33 -0000
@@ -1,6 +1,6 @@
 /* BFD library support routines for the Renesas / SuperH SH architecture.
-   Copyright 1993, 1994, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005
-   Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005,
+   2007 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "../opcodes/sh-opc.h"
 
Index: bfd/cpu-sparc.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-sparc.c,v
retrieving revision 1.8
diff -u -p -r1.8 cpu-sparc.c
--- bfd/cpu-sparc.c	4 May 2005 15:53:06 -0000	1.8
+++ bfd/cpu-sparc.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the SPARC architecture.
-   Copyright 1992, 1995, 1996, 1998, 2000, 2002
+   Copyright 1992, 1995, 1996, 1998, 2000, 2002, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static const bfd_arch_info_type arch_info_struct[] =
Index: bfd/cpu-spu.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-spu.c,v
retrieving revision 1.1
diff -u -p -r1.1 cpu-spu.c
--- bfd/cpu-spu.c	25 Oct 2006 06:49:20 -0000	1.1
+++ bfd/cpu-spu.c	26 Apr 2007 06:48:33 -0000
@@ -1,4 +1,4 @@
-/* Copyright 2006 Free Software Foundation, Inc.
+/* Copyright 2006, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -16,8 +16,8 @@
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 
Index: bfd/cpu-tic30.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-tic30.c,v
retrieving revision 1.4
diff -u -p -r1.4 cpu-tic30.c
--- bfd/cpu-tic30.c	4 May 2005 15:53:06 -0000	1.4
+++ bfd/cpu-tic30.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Texas Instruments TMS320C30 architecture.
-   Copyright 1998, 2002 Free Software Foundation, Inc.
+   Copyright 1998, 2002, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -18,8 +18,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_tic30_arch =
Index: bfd/cpu-tic4x.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-tic4x.c,v
retrieving revision 1.6
diff -u -p -r1.6 cpu-tic4x.c
--- bfd/cpu-tic4x.c	4 May 2005 15:53:06 -0000	1.6
+++ bfd/cpu-tic4x.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* bfd back-end for TMS320C[34]x support
-   Copyright 1996, 1997, 2002, 2003 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 2002, 2003, 2007 Free Software Foundation, Inc.
 
    Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz)
 
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static bfd_boolean tic4x_scan
Index: bfd/cpu-tic54x.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-tic54x.c,v
retrieving revision 1.7
diff -u -p -r1.7 cpu-tic54x.c
--- bfd/cpu-tic54x.c	4 May 2005 15:53:06 -0000	1.7
+++ bfd/cpu-tic54x.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Texas Instruments TMS320C54X architecture.
-   Copyright 1999, 2000, 2002 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2002, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -18,8 +18,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_tic54x_arch =
Index: bfd/cpu-tic80.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-tic80.c,v
retrieving revision 1.5
diff -u -p -r1.5 cpu-tic80.c
--- bfd/cpu-tic80.c	4 May 2005 15:53:06 -0000	1.5
+++ bfd/cpu-tic80.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* bfd back-end for TI TMS320C80 (MVP) support
-   Copyright 1996, 2002 Free Software Foundation, Inc.
+   Copyright 1996, 2002, 2007 Free Software Foundation, Inc.
    Written by Fred Fish at Cygnus support (fnf@cygnus.com)
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_tic80_arch =
Index: bfd/cpu-v850.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-v850.c,v
retrieving revision 1.11
diff -u -p -r1.11 cpu-v850.c
--- bfd/cpu-v850.c	4 May 2005 15:53:06 -0000	1.11
+++ bfd/cpu-v850.c	26 Apr 2007 06:48:33 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the NEC V850 processor
-   Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2003
+   Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2007
    Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "safe-ctype.h"
 
Index: bfd/cpu-vax.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-vax.c,v
retrieving revision 1.7
diff -u -p -r1.7 cpu-vax.c
--- bfd/cpu-vax.c	3 Jun 2005 10:14:29 -0000	1.7
+++ bfd/cpu-vax.c	26 Apr 2007 06:48:34 -0000
@@ -1,5 +1,6 @@
 /* bfd back-end for vax support
-   Copyright 1990, 1991, 1994, 2000, 2002 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1994, 2000, 2002, 2007
+   Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_vax_arch =
Index: bfd/cpu-w65.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-w65.c,v
retrieving revision 1.8
diff -u -p -r1.8 cpu-w65.c
--- bfd/cpu-w65.c	4 May 2005 15:53:06 -0000	1.8
+++ bfd/cpu-w65.c	26 Apr 2007 06:48:34 -0000
@@ -1,5 +1,6 @@
 /* BFD library support routines for the WDC 65816 architecture.
-   Copyright 1995, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1995, 1999, 2000, 2001, 2002, 2007
+   Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +19,8 @@ You w65ould have received a copy of the 
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 static bfd_boolean scan_mach
Index: bfd/cpu-we32k.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-we32k.c,v
retrieving revision 1.6
diff -u -p -r1.6 cpu-we32k.c
--- bfd/cpu-we32k.c	4 May 2005 15:53:06 -0000	1.6
+++ bfd/cpu-we32k.c	26 Apr 2007 06:48:34 -0000
@@ -1,5 +1,5 @@
 /* bfd back-end for we32k support
-   Copyright 1992, 2000, 2002 Free Software Foundation, Inc.
+   Copyright 1992, 2000, 2002, 2007 Free Software Foundation, Inc.
    Contributed by Brendan Kehoe (brendan@cs.widener.edu).
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_we32k_arch =
Index: bfd/cpu-xc16x.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-xc16x.c,v
retrieving revision 1.1
diff -u -p -r1.1 cpu-xc16x.c
--- bfd/cpu-xc16x.c	17 Feb 2006 14:36:21 -0000	1.1
+++ bfd/cpu-xc16x.c	26 Apr 2007 06:48:34 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Infineon XC16X Microcontroller.
-   Copyright 2006 Free Software Foundation, Inc.
+   Copyright 2006, 2007 Free Software Foundation, Inc.
    Contributed by KPIT Cummins Infosystems 
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -20,8 +20,8 @@
    Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type xc16xs_info_struct =
Index: bfd/cpu-xstormy16.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-xstormy16.c,v
retrieving revision 1.5
diff -u -p -r1.5 cpu-xstormy16.c
--- bfd/cpu-xstormy16.c	1 Jul 2005 11:16:29 -0000	1.5
+++ bfd/cpu-xstormy16.c	26 Apr 2007 06:48:34 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the XSTORMY16 processor.
-   Copyright 2001, 2002 Free Software Foundation, Inc.
+   Copyright 2001, 2002, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_xstormy16_arch =
Index: bfd/cpu-xtensa.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-xtensa.c,v
retrieving revision 1.3
diff -u -p -r1.3 cpu-xtensa.c
--- bfd/cpu-xtensa.c	4 May 2005 15:53:06 -0000	1.3
+++ bfd/cpu-xtensa.c	26 Apr 2007 06:48:34 -0000
@@ -1,5 +1,5 @@
 /* BFD support for the Xtensa processor.
-   Copyright 2003 Free Software Foundation, Inc.
+   Copyright 2003, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_xtensa_arch =
Index: bfd/cpu-z80.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-z80.c,v
retrieving revision 1.1
diff -u -p -r1.1 cpu-z80.c
--- bfd/cpu-z80.c	25 Oct 2005 17:40:10 -0000	1.1
+++ bfd/cpu-z80.c	26 Apr 2007 06:48:34 -0000
@@ -1,5 +1,5 @@
 /* BFD library support routines for the Z80 architecture.
-   Copyright 2005 Free Software Foundation, Inc.
+   Copyright 2005, 2007 Free Software Foundation, Inc.
    Contributed by Arnold Metselaar <arnold_m@operamail.com>
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 const bfd_arch_info_type bfd_z80_arch;
Index: bfd/cpu-z8k.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-z8k.c,v
retrieving revision 1.11
diff -u -p -r1.11 cpu-z8k.c
--- bfd/cpu-z8k.c	4 May 2005 15:53:06 -0000	1.11
+++ bfd/cpu-z8k.c	26 Apr 2007 06:48:34 -0000
@@ -1,5 +1,5 @@
 /* BFD library support routines for the Z800n architecture.
-   Copyright 1992, 1993, 1994, 2000, 2001, 2002, 2003
+   Copyright 1992, 1993, 1994, 2000, 2001, 2002, 2003, 2007
    Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 /* This routine is provided two arch_infos and returns whether
Index: bfd/dwarf1.c
===================================================================
RCS file: /cvs/src/src/bfd/dwarf1.c,v
retrieving revision 1.16
diff -u -p -r1.16 dwarf1.c
--- bfd/dwarf1.c	4 May 2005 15:53:06 -0000	1.16
+++ bfd/dwarf1.c	26 Apr 2007 06:48:34 -0000
@@ -1,5 +1,5 @@
 /* DWARF 1 find nearest line (_bfd_dwarf1_find_nearest_line).
-   Copyright 1998, 1999, 2000, 2001, 2002, 2004, 2005
+   Copyright 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2007
    Free Software Foundation, Inc.
 
    Written by Gavin Romig-Koch of Cygnus Solutions (gavin@cygnus.com).
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/dwarf2.c
===================================================================
RCS file: /cvs/src/src/bfd/dwarf2.c,v
retrieving revision 1.92
diff -u -p -r1.92 dwarf2.c
--- bfd/dwarf2.c	23 Feb 2007 17:38:07 -0000	1.92
+++ bfd/dwarf2.c	26 Apr 2007 06:48:35 -0000
@@ -1,6 +1,6 @@
 /* DWARF 2 support.
    Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
-   2004, 2005, 2006 Free Software Foundation, Inc.
+   2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 
    Adapted from gdb/dwarf2read.c by Gavin Koch of Cygnus Solutions
    (gavin@cygnus.com).
@@ -29,8 +29,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/ecoff.c
===================================================================
RCS file: /cvs/src/src/bfd/ecoff.c,v
retrieving revision 1.54
diff -u -p -r1.54 ecoff.c
--- bfd/ecoff.c	21 Apr 2007 07:49:29 -0000	1.54
+++ bfd/ecoff.c	26 Apr 2007 06:48:38 -0000
@@ -1,6 +1,6 @@
 /* Generic ECOFF (Extended-COFF) routines.
    Copyright 1990, 1991, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-   2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+   2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
    Original version by Per Bothner.
    Full support added by Ian Lance Taylor, ian@cygnus.com.
 
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "aout/ar.h"
Index: bfd/ecofflink.c
===================================================================
RCS file: /cvs/src/src/bfd/ecofflink.c,v
retrieving revision 1.21
diff -u -p -r1.21 ecofflink.c
--- bfd/ecofflink.c	4 May 2006 05:05:25 -0000	1.21
+++ bfd/ecofflink.c	26 Apr 2007 06:48:40 -0000
@@ -1,6 +1,6 @@
 /* Routines to link ECOFF debugging information.
    Copyright 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
-   2004, 2005, 2006 Free Software Foundation, Inc.
+   2004, 2005, 2006, 2007 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support, <ian@cygnus.com>.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "objalloc.h"
Index: bfd/efi-app-ia32.c
===================================================================
RCS file: /cvs/src/src/bfd/efi-app-ia32.c,v
retrieving revision 1.8
diff -u -p -r1.8 efi-app-ia32.c
--- bfd/efi-app-ia32.c	4 May 2005 15:53:07 -0000	1.8
+++ bfd/efi-app-ia32.c	26 Apr 2007 06:48:40 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for Intel IA-32 EFI application files.
-   Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
    Contributed by David Mosberger <davidm@hpl.hp.com>
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SYM bfd_efi_app_ia32_vec
 #define TARGET_NAME "efi-app-ia32"
Index: bfd/efi-app-ia64.c
===================================================================
RCS file: /cvs/src/src/bfd/efi-app-ia64.c,v
retrieving revision 1.6
diff -u -p -r1.6 efi-app-ia64.c
--- bfd/efi-app-ia64.c	4 May 2005 15:53:07 -0000	1.6
+++ bfd/efi-app-ia64.c	26 Apr 2007 06:48:40 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for HP/Intel IA-64 EFI application files.
-   Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
    Contributed by David Mosberger <davidm@hpl.hp.com>
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SYM bfd_efi_app_ia64_vec
 #define TARGET_NAME "efi-app-ia64"
Index: bfd/efi-app-x86_64.c
===================================================================
RCS file: /cvs/src/src/bfd/efi-app-x86_64.c,v
retrieving revision 1.1
diff -u -p -r1.1 efi-app-x86_64.c
--- bfd/efi-app-x86_64.c	7 Mar 2007 21:35:28 -0000	1.1
+++ bfd/efi-app-x86_64.c	26 Apr 2007 06:48:40 -0000
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SYM bfd_efi_app_x86_64_vec
 #define TARGET_NAME "efi-app-x86_64"
Index: bfd/elf-eh-frame.c
===================================================================
RCS file: /cvs/src/src/bfd/elf-eh-frame.c,v
retrieving revision 1.55
diff -u -p -r1.55 elf-eh-frame.c
--- bfd/elf-eh-frame.c	24 Apr 2007 04:28:38 -0000	1.55
+++ bfd/elf-eh-frame.c	26 Apr 2007 06:48:40 -0000
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/dwarf2.h"
Index: bfd/elf-m10200.c
===================================================================
RCS file: /cvs/src/src/bfd/elf-m10200.c,v
retrieving revision 1.32
diff -u -p -r1.32 elf-m10200.c
--- bfd/elf-m10200.c	26 Mar 2007 12:22:59 -0000	1.32
+++ bfd/elf-m10200.c	26 Apr 2007 06:48:41 -0000
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 
Index: bfd/elf-m10300.c
===================================================================
RCS file: /cvs/src/src/bfd/elf-m10300.c,v
retrieving revision 1.80
diff -u -p -r1.80 elf-m10300.c
--- bfd/elf-m10300.c	26 Mar 2007 12:22:59 -0000	1.80
+++ bfd/elf-m10300.c	26 Apr 2007 06:48:46 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/mn10300.h"
Index: bfd/elf-strtab.c
===================================================================
RCS file: /cvs/src/src/bfd/elf-strtab.c,v
retrieving revision 1.12
diff -u -p -r1.12 elf-strtab.c
--- bfd/elf-strtab.c	16 Mar 2006 12:20:15 -0000	1.12
+++ bfd/elf-strtab.c	26 Apr 2007 06:48:46 -0000
@@ -1,5 +1,6 @@
 /* ELF strtab with GC and suffix merging support.
-   Copyright 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+   Copyright 2001, 2002, 2003, 2005, 2006, 2007
+   Free Software Foundation, Inc.
    Written by Jakub Jelinek <jakub@redhat.com>.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "hashtab.h"
Index: bfd/elf-vxworks.c
===================================================================
RCS file: /cvs/src/src/bfd/elf-vxworks.c,v
retrieving revision 1.7
diff -u -p -r1.7 elf-vxworks.c
--- bfd/elf-vxworks.c	11 Apr 2007 14:36:33 -0000	1.7
+++ bfd/elf-vxworks.c	26 Apr 2007 06:48:46 -0000
@@ -1,5 +1,5 @@
 /* VxWorks support for ELF
-   Copyright 2005 Free Software Foundation, Inc.
+   Copyright 2005, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -20,8 +20,8 @@
 
 /* This file provides routines used by all VxWorks targets.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf-vxworks.h"
Index: bfd/elf.c
===================================================================
RCS file: /cvs/src/src/bfd/elf.c,v
retrieving revision 1.383
diff -u -p -r1.383 elf.c
--- bfd/elf.c	17 Apr 2007 20:09:51 -0000	1.383
+++ bfd/elf.c	26 Apr 2007 06:48:50 -0000
@@ -33,8 +33,8 @@ SECTION
 
 /* For sparc64-cross-sparc32.  */
 #define _SYSCALL32
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #define ARCH_SIZE 0
Index: bfd/elf32-am33lin.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-am33lin.c,v
retrieving revision 1.5
diff -u -p -r1.5 elf32-am33lin.c
--- bfd/elf32-am33lin.c	9 Sep 2005 18:26:03 -0000	1.5
+++ bfd/elf32-am33lin.c	26 Apr 2007 06:48:50 -0000
@@ -1,5 +1,5 @@
 /* Matsushita AM33/2.0 support for 32-bit GNU/Linux ELF
-   Copyright 2003, 2005
+   Copyright 2003, 2005, 2007
    Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "elf-bfd.h"
 #include "elf/mn10300.h"
 
Index: bfd/elf32-arc.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-arc.c,v
retrieving revision 1.18
diff -u -p -r1.18 elf32-arc.c
--- bfd/elf32-arc.c	26 Mar 2007 12:22:59 -0000	1.18
+++ bfd/elf32-arc.c	26 Apr 2007 06:48:50 -0000
@@ -20,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/arc.h"
Index: bfd/elf32-arm.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-arm.c,v
retrieving revision 1.110
diff -u -p -r1.110 elf32-arm.c
--- bfd/elf32-arm.c	17 Apr 2007 20:09:51 -0000	1.110
+++ bfd/elf32-arm.c	26 Apr 2007 06:48:55 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-avr.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-avr.c,v
retrieving revision 1.30
diff -u -p -r1.30 elf32-avr.c
--- bfd/elf32-avr.c	26 Mar 2007 12:23:00 -0000	1.30
+++ bfd/elf32-avr.c	26 Apr 2007 06:48:57 -0000
@@ -20,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor,
    Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/avr.h"
Index: bfd/elf32-bfin.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-bfin.c,v
retrieving revision 1.19
diff -u -p -r1.19 elf32-bfin.c
--- bfd/elf32-bfin.c	26 Mar 2007 12:23:00 -0000	1.19
+++ bfd/elf32-bfin.c	26 Apr 2007 06:49:00 -0000
@@ -18,8 +18,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301,
    USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/bfin.h"
Index: bfd/elf32-cr16c.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-cr16c.c,v
retrieving revision 1.10
diff -u -p -r1.10 elf32-cr16c.c
--- bfd/elf32-cr16c.c	26 Mar 2007 12:23:00 -0000	1.10
+++ bfd/elf32-cr16c.c	26 Apr 2007 06:49:01 -0000
@@ -17,8 +17,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "elf/cr16c.h"
Index: bfd/elf32-cris.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-cris.c,v
retrieving revision 1.79
diff -u -p -r1.79 elf32-cris.c
--- bfd/elf32-cris.c	26 Mar 2007 12:23:00 -0000	1.79
+++ bfd/elf32-cris.c	26 Apr 2007 06:49:03 -0000
@@ -21,8 +21,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/cris.h"
Index: bfd/elf32-crx.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-crx.c,v
retrieving revision 1.10
diff -u -p -r1.10 elf32-crx.c
--- bfd/elf32-crx.c	26 Mar 2007 12:23:00 -0000	1.10
+++ bfd/elf32-crx.c	26 Apr 2007 06:49:04 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-d10v.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-d10v.c,v
retrieving revision 1.34
diff -u -p -r1.34 elf32-d10v.c
--- bfd/elf32-d10v.c	26 Mar 2007 12:23:00 -0000	1.34
+++ bfd/elf32-d10v.c	26 Apr 2007 06:49:04 -0000
@@ -20,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/d10v.h"
Index: bfd/elf32-d30v.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-d30v.c,v
retrieving revision 1.19
diff -u -p -r1.19 elf32-d30v.c
--- bfd/elf32-d30v.c	26 Mar 2007 12:23:00 -0000	1.19
+++ bfd/elf32-d30v.c	26 Apr 2007 06:49:04 -0000
@@ -20,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/d30v.h"
Index: bfd/elf32-dlx.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-dlx.c,v
retrieving revision 1.18
diff -u -p -r1.18 elf32-dlx.c
--- bfd/elf32-dlx.c	26 Mar 2007 12:23:00 -0000	1.18
+++ bfd/elf32-dlx.c	26 Apr 2007 06:49:04 -0000
@@ -19,8 +19,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/dlx.h"
Index: bfd/elf32-fr30.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-fr30.c,v
retrieving revision 1.33
diff -u -p -r1.33 elf32-fr30.c
--- bfd/elf32-fr30.c	26 Mar 2007 12:23:00 -0000	1.33
+++ bfd/elf32-fr30.c	26 Apr 2007 06:49:04 -0000
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/fr30.h"
Index: bfd/elf32-frv.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-frv.c,v
retrieving revision 1.51
diff -u -p -r1.51 elf32-frv.c
--- bfd/elf32-frv.c	26 Mar 2007 12:23:00 -0000	1.51
+++ bfd/elf32-frv.c	26 Apr 2007 06:49:09 -0000
@@ -18,8 +18,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/frv.h"
Index: bfd/elf32-gen.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-gen.c,v
retrieving revision 1.16
diff -u -p -r1.16 elf32-gen.c
--- bfd/elf32-gen.c	26 Mar 2007 12:23:00 -0000	1.16
+++ bfd/elf32-gen.c	26 Apr 2007 06:49:09 -0000
@@ -1,5 +1,5 @@
 /* Generic support for 32-bit ELF
-   Copyright 1993, 1995, 1998, 1999, 2001, 2002, 2004, 2005
+   Copyright 1993, 1995, 1998, 1999, 2001, 2002, 2004, 2005, 2007
    Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 
Index: bfd/elf32-h8300.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-h8300.c,v
retrieving revision 1.51
diff -u -p -r1.51 elf32-h8300.c
--- bfd/elf32-h8300.c	26 Mar 2007 12:23:00 -0000	1.51
+++ bfd/elf32-h8300.c	26 Apr 2007 06:49:09 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/h8.h"
Index: bfd/elf32-hppa.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-hppa.c,v
retrieving revision 1.153
diff -u -p -r1.153 elf32-hppa.c
--- bfd/elf32-hppa.c	26 Mar 2007 12:23:00 -0000	1.153
+++ bfd/elf32-hppa.c	26 Apr 2007 06:49:11 -0000
@@ -26,8 +26,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/hppa.h"
Index: bfd/elf32-i370.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-i370.c,v
retrieving revision 1.59
diff -u -p -r1.59 elf32-i370.c
--- bfd/elf32-i370.c	26 Mar 2007 12:23:00 -0000	1.59
+++ bfd/elf32-i370.c	26 Apr 2007 06:49:13 -0000
@@ -27,8 +27,8 @@
    else is a wild card.  In particular, don't expect shared libs or
    dynamic loading to work ...  its never been tested.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-i386.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-i386.c,v
retrieving revision 1.171
diff -u -p -r1.171 elf32-i386.c
--- bfd/elf32-i386.c	26 Mar 2007 12:23:00 -0000	1.171
+++ bfd/elf32-i386.c	26 Apr 2007 06:49:14 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-i860.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-i860.c,v
retrieving revision 1.39
diff -u -p -r1.39 elf32-i860.c
--- bfd/elf32-i860.c	26 Mar 2007 12:23:00 -0000	1.39
+++ bfd/elf32-i860.c	26 Apr 2007 06:49:15 -0000
@@ -20,8 +20,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/i860.h"
Index: bfd/elf32-i960.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-i960.c,v
retrieving revision 1.15
diff -u -p -r1.15 elf32-i960.c
--- bfd/elf32-i960.c	26 Mar 2007 12:23:00 -0000	1.15
+++ bfd/elf32-i960.c	26 Apr 2007 06:49:15 -0000
@@ -19,8 +19,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/i960.h"
Index: bfd/elf32-ip2k.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-ip2k.c,v
retrieving revision 1.23
diff -u -p -r1.23 elf32-ip2k.c
--- bfd/elf32-ip2k.c	26 Mar 2007 12:23:00 -0000	1.23
+++ bfd/elf32-ip2k.c	26 Apr 2007 06:49:16 -0000
@@ -19,8 +19,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/ip2k.h"
Index: bfd/elf32-iq2000.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-iq2000.c,v
retrieving revision 1.19
diff -u -p -r1.19 elf32-iq2000.c
--- bfd/elf32-iq2000.c	26 Mar 2007 12:23:00 -0000	1.19
+++ bfd/elf32-iq2000.c	26 Apr 2007 06:49:17 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/iq2000.h"
Index: bfd/elf32-m32c.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-m32c.c,v
retrieving revision 1.12
diff -u -p -r1.12 elf32-m32c.c
--- bfd/elf32-m32c.c	26 Mar 2007 12:23:00 -0000	1.12
+++ bfd/elf32-m32c.c	26 Apr 2007 06:49:17 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/m32c.h"
Index: bfd/elf32-m32r.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-m32r.c,v
retrieving revision 1.85
diff -u -p -r1.85 elf32-m32r.c
--- bfd/elf32-m32r.c	26 Mar 2007 12:23:00 -0000	1.85
+++ bfd/elf32-m32r.c	26 Apr 2007 06:49:20 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/m32r.h"
Index: bfd/elf32-m68hc11.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-m68hc11.c,v
retrieving revision 1.35
diff -u -p -r1.35 elf32-m68hc11.c
--- bfd/elf32-m68hc11.c	26 Mar 2007 12:23:00 -0000	1.35
+++ bfd/elf32-m68hc11.c	26 Apr 2007 06:49:20 -0000
@@ -20,8 +20,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-m68hc12.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-m68hc12.c,v
retrieving revision 1.27
diff -u -p -r1.27 elf32-m68hc12.c
--- bfd/elf32-m68hc12.c	26 Mar 2007 12:23:00 -0000	1.27
+++ bfd/elf32-m68hc12.c	26 Apr 2007 06:49:21 -0000
@@ -20,8 +20,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-m68hc1x.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-m68hc1x.c,v
retrieving revision 1.27
diff -u -p -r1.27 elf32-m68hc1x.c
--- bfd/elf32-m68hc1x.c	7 Mar 2007 08:54:34 -0000	1.27
+++ bfd/elf32-m68hc1x.c	26 Apr 2007 06:49:21 -0000
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-m68k.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-m68k.c,v
retrieving revision 1.100
diff -u -p -r1.100 elf32-m68k.c
--- bfd/elf32-m68k.c	23 Apr 2007 07:51:26 -0000	1.100
+++ bfd/elf32-m68k.c	26 Apr 2007 06:49:22 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-m88k.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-m88k.c,v
retrieving revision 1.6
diff -u -p -r1.6 elf32-m88k.c
--- bfd/elf32-m88k.c	26 Mar 2007 12:23:00 -0000	1.6
+++ bfd/elf32-m88k.c	26 Apr 2007 06:49:22 -0000
@@ -1,5 +1,5 @@
 /* Motorola 88k-specific support for 32-bit ELF
-   Copyright 1993, 1995, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1995, 1999, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 
Index: bfd/elf32-mcore.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-mcore.c,v
retrieving revision 1.48
diff -u -p -r1.48 elf32-mcore.c
--- bfd/elf32-mcore.c	26 Mar 2007 12:23:00 -0000	1.48
+++ bfd/elf32-mcore.c	26 Apr 2007 06:49:23 -0000
@@ -22,8 +22,8 @@
 /* This file is based on a preliminary RCE ELF ABI.  The
    information may not match the final RCE ELF ABI.   */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-mep.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-mep.c,v
retrieving revision 1.3
diff -u -p -r1.3 elf32-mep.c
--- bfd/elf32-mep.c	26 Mar 2007 12:23:00 -0000	1.3
+++ bfd/elf32-mep.c	26 Apr 2007 06:49:25 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/mep.h"
Index: bfd/elf32-mips.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-mips.c,v
retrieving revision 1.194
diff -u -p -r1.194 elf32-mips.c
--- bfd/elf32-mips.c	26 Mar 2007 12:23:00 -0000	1.194
+++ bfd/elf32-mips.c	26 Apr 2007 06:49:25 -0000
@@ -29,8 +29,8 @@ Foundation, Inc., 51 Franklin Street - F
    different MIPS ELF from other targets.  This matters when linking.
    This file supports both, switching at runtime.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "genlink.h"
Index: bfd/elf32-msp430.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-msp430.c,v
retrieving revision 1.17
diff -u -p -r1.17 elf32-msp430.c
--- bfd/elf32-msp430.c	26 Mar 2007 12:23:00 -0000	1.17
+++ bfd/elf32-msp430.c	26 Apr 2007 06:49:25 -0000
@@ -19,8 +19,8 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-mt.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-mt.c,v
retrieving revision 1.7
diff -u -p -r1.7 elf32-mt.c
--- bfd/elf32-mt.c	26 Mar 2007 12:23:00 -0000	1.7
+++ bfd/elf32-mt.c	26 Apr 2007 06:49:25 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/mt.h"
Index: bfd/elf32-openrisc.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-openrisc.c,v
retrieving revision 1.26
diff -u -p -r1.26 elf32-openrisc.c
--- bfd/elf32-openrisc.c	26 Mar 2007 12:23:00 -0000	1.26
+++ bfd/elf32-openrisc.c	26 Apr 2007 06:49:25 -0000
@@ -20,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301,
    USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/openrisc.h"
Index: bfd/elf32-or32.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-or32.c,v
retrieving revision 1.11
diff -u -p -r1.11 elf32-or32.c
--- bfd/elf32-or32.c	26 Mar 2007 12:23:00 -0000	1.11
+++ bfd/elf32-or32.c	26 Apr 2007 06:49:26 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/or32.h"
Index: bfd/elf32-pj.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-pj.c,v
retrieving revision 1.11
diff -u -p -r1.11 elf32-pj.c
--- bfd/elf32-pj.c	26 Mar 2007 12:23:00 -0000	1.11
+++ bfd/elf32-pj.c	26 Apr 2007 06:49:26 -0000
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-ppc.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-ppc.c,v
retrieving revision 1.212
diff -u -p -r1.212 elf32-ppc.c
--- bfd/elf32-ppc.c	29 Mar 2007 01:11:30 -0000	1.212
+++ bfd/elf32-ppc.c	26 Apr 2007 06:49:30 -0000
@@ -25,9 +25,9 @@
    suggestions from the in-progress Embedded PowerPC ABI, and that
    information may also not match.  */
 
+#include "sysdep.h"
 #include <stdarg.h>
 #include "bfd.h"
-#include "sysdep.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-s390.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-s390.c,v
retrieving revision 1.91
diff -u -p -r1.91 elf32-s390.c
--- bfd/elf32-s390.c	26 Mar 2007 12:23:00 -0000	1.91
+++ bfd/elf32-s390.c	26 Apr 2007 06:49:32 -0000
@@ -20,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-score.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-score.c,v
retrieving revision 1.9
diff -u -p -r1.9 elf32-score.c
--- bfd/elf32-score.c	26 Mar 2007 12:23:00 -0000	1.9
+++ bfd/elf32-score.c	26 Apr 2007 06:49:36 -0000
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libiberty.h"
 #include "elf-bfd.h"
Index: bfd/elf32-sh.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-sh.c,v
retrieving revision 1.147
diff -u -p -r1.147 elf32-sh.c
--- bfd/elf32-sh.c	26 Mar 2007 12:23:00 -0000	1.147
+++ bfd/elf32-sh.c	26 Apr 2007 06:49:38 -0000
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-sh64-com.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-sh64-com.c,v
retrieving revision 1.10
diff -u -p -r1.10 elf32-sh64-com.c
--- bfd/elf32-sh64-com.c	4 May 2005 15:53:21 -0000	1.10
+++ bfd/elf32-sh64-com.c	26 Apr 2007 06:49:38 -0000
@@ -1,5 +1,6 @@
 /* SuperH SH64-specific support for 32-bit ELF
-   Copyright 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+   Copyright 2000, 2001, 2002, 2003, 2004, 2007
+   Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -19,8 +20,8 @@
 
 #define SH64_ELF
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/sh.h"
Index: bfd/elf32-sh64.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-sh64.c,v
retrieving revision 1.41
diff -u -p -r1.41 elf32-sh64.c
--- bfd/elf32-sh64.c	22 Oct 2006 01:02:38 -0000	1.41
+++ bfd/elf32-sh64.c	26 Apr 2007 06:49:39 -0000
@@ -1,5 +1,5 @@
 /* SuperH SH64-specific support for 32-bit ELF
-   Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006
+   Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -20,8 +20,8 @@
 
 #define SH64_ELF
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "elf-bfd.h"
 #include "../opcodes/sh64-opc.h"
 #include "elf32-sh64.h"
Index: bfd/elf32-sparc.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-sparc.c,v
retrieving revision 1.87
diff -u -p -r1.87 elf32-sparc.c
--- bfd/elf32-sparc.c	26 Mar 2007 12:23:01 -0000	1.87
+++ bfd/elf32-sparc.c	26 Apr 2007 06:49:39 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-spu.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-spu.c,v
retrieving revision 1.11
diff -u -p -r1.11 elf32-spu.c
--- bfd/elf32-spu.c	12 Apr 2007 07:47:13 -0000	1.11
+++ bfd/elf32-spu.c	26 Apr 2007 06:49:40 -0000
@@ -18,8 +18,8 @@
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-v850.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-v850.c,v
retrieving revision 1.68
diff -u -p -r1.68 elf32-v850.c
--- bfd/elf32-v850.c	26 Mar 2007 12:23:02 -0000	1.68
+++ bfd/elf32-v850.c	26 Apr 2007 06:49:42 -0000
@@ -22,8 +22,8 @@
 /* XXX FIXME: This code is littered with 32bit int, 16bit short, 8bit char
    dependencies.  As is the gas & simulator code for the v850.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-vax.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-vax.c,v
retrieving revision 1.42
diff -u -p -r1.42 elf32-vax.c
--- bfd/elf32-vax.c	6 Apr 2007 16:29:32 -0000	1.42
+++ bfd/elf32-vax.c	26 Apr 2007 06:49:44 -0000
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf32-xc16x.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-xc16x.c,v
retrieving revision 1.3
diff -u -p -r1.3 elf32-xc16x.c
--- bfd/elf32-xc16x.c	26 Mar 2007 12:23:02 -0000	1.3
+++ bfd/elf32-xc16x.c	26 Apr 2007 06:49:44 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/xc16x.h"
Index: bfd/elf32-xstormy16.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-xstormy16.c,v
retrieving revision 1.38
diff -u -p -r1.38 elf32-xstormy16.c
--- bfd/elf32-xstormy16.c	26 Mar 2007 12:23:02 -0000	1.38
+++ bfd/elf32-xstormy16.c	26 Apr 2007 06:49:44 -0000
@@ -19,8 +19,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301,
    USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/xstormy16.h"
Index: bfd/elf32-xtensa.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-xtensa.c,v
retrieving revision 1.85
diff -u -p -r1.85 elf32-xtensa.c
--- bfd/elf32-xtensa.c	12 Apr 2007 18:55:29 -0000	1.85
+++ bfd/elf32-xtensa.c	26 Apr 2007 06:49:50 -0000
@@ -18,8 +18,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #include <stdarg.h>
 #include <strings.h>
Index: bfd/elf64-alpha.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-alpha.c,v
retrieving revision 1.159
diff -u -p -r1.159 elf64-alpha.c
--- bfd/elf64-alpha.c	10 Apr 2007 18:00:25 -0000	1.159
+++ bfd/elf64-alpha.c	26 Apr 2007 06:49:53 -0000
@@ -22,8 +22,8 @@
 /* We need a published ABI spec for this.  Until one comes out, don't
    assume this'll remain unchanged forever.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 
Index: bfd/elf64-gen.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-gen.c,v
retrieving revision 1.16
diff -u -p -r1.16 elf64-gen.c
--- bfd/elf64-gen.c	26 Mar 2007 12:23:02 -0000	1.16
+++ bfd/elf64-gen.c	26 Apr 2007 06:49:53 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 
Index: bfd/elf64-hppa.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-hppa.c,v
retrieving revision 1.78
diff -u -p -r1.78 elf64-hppa.c
--- bfd/elf64-hppa.c	26 Mar 2007 12:23:02 -0000	1.78
+++ bfd/elf64-hppa.c	26 Apr 2007 06:49:55 -0000
@@ -19,8 +19,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 #include "alloca-conf.h"
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/hppa.h"
Index: bfd/elf64-mips.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-mips.c,v
retrieving revision 1.79
diff -u -p -r1.79 elf64-mips.c
--- bfd/elf64-mips.c	26 Mar 2007 12:23:02 -0000	1.79
+++ bfd/elf64-mips.c	26 Apr 2007 06:49:56 -0000
@@ -40,8 +40,8 @@ Foundation, Inc., 51 Franklin Street - F
  .     the OldABI version is still lying around and should be removed.
  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "aout/ar.h"
 #include "bfdlink.h"
Index: bfd/elf64-mmix.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-mmix.c,v
retrieving revision 1.53
diff -u -p -r1.53 elf64-mmix.c
--- bfd/elf64-mmix.c	26 Mar 2007 12:23:02 -0000	1.53
+++ bfd/elf64-mmix.c	26 Apr 2007 06:49:58 -0000
@@ -27,8 +27,8 @@ Foundation, Inc., 51 Franklin Street - F
    - GETA stub relaxation (call a stub for out of range new
      R_MMIX_GETA_STUBBABLE).  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/mmix.h"
Index: bfd/elf64-ppc.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-ppc.c,v
retrieving revision 1.260
diff -u -p -r1.260 elf64-ppc.c
--- bfd/elf64-ppc.c	26 Mar 2007 12:23:02 -0000	1.260
+++ bfd/elf64-ppc.c	26 Apr 2007 06:50:04 -0000
@@ -25,9 +25,9 @@
    http://www.linuxbase.org/spec/ELF/ppc64/PPC-elf64abi.txt, and
    http://www.linuxbase.org/spec/ELF/ppc64/spec/book1.html  */
 
+#include "sysdep.h"
 #include <stdarg.h>
 #include "bfd.h"
-#include "sysdep.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf64-s390.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-s390.c,v
retrieving revision 1.91
diff -u -p -r1.91 elf64-s390.c
--- bfd/elf64-s390.c	26 Mar 2007 12:23:02 -0000	1.91
+++ bfd/elf64-s390.c	26 Apr 2007 06:50:06 -0000
@@ -20,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf64-sh64.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-sh64.c,v
retrieving revision 1.74
diff -u -p -r1.74 elf64-sh64.c
--- bfd/elf64-sh64.c	26 Mar 2007 12:23:02 -0000	1.74
+++ bfd/elf64-sh64.c	26 Apr 2007 06:50:08 -0000
@@ -20,8 +20,8 @@
 
 #define SH64_ELF64
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elf64-sparc.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-sparc.c,v
retrieving revision 1.112
diff -u -p -r1.112 elf64-sparc.c
--- bfd/elf64-sparc.c	26 Mar 2007 12:23:02 -0000	1.112
+++ bfd/elf64-sparc.c	26 Apr 2007 06:50:09 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "elf/sparc.h"
Index: bfd/elf64-x86-64.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-x86-64.c,v
retrieving revision 1.131
diff -u -p -r1.131 elf64-x86-64.c
--- bfd/elf64-x86-64.c	26 Mar 2007 12:23:02 -0000	1.131
+++ bfd/elf64-x86-64.c	26 Apr 2007 06:50:10 -0000
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
Index: bfd/elfcode.h
===================================================================
RCS file: /cvs/src/src/bfd/elfcode.h,v
retrieving revision 1.81
diff -u -p -r1.81 elfcode.h
--- bfd/elfcode.h	14 Mar 2007 02:56:45 -0000	1.81
+++ bfd/elfcode.h	26 Apr 2007 06:50:11 -0000
@@ -1,6 +1,7 @@
 /* ELF executable support for BFD.
    Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
-   2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+   2001, 2002, 2003, 2004, 2005, 2006, 2007
+   Free Software Foundation, Inc.
 
    Written by Fred Fish @ Cygnus Support, from information published
    in "UNIX System V Release 4, Programmers Guide: ANSI C and
@@ -64,8 +65,8 @@ Foundation, Inc., 51 Franklin Street - F
 	it's cast in stone.
  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "bfdlink.h"
 #include "libbfd.h"
Index: bfd/elflink.c
===================================================================
RCS file: /cvs/src/src/bfd/elflink.c,v
retrieving revision 1.257
diff -u -p -r1.257 elflink.c
--- bfd/elflink.c	17 Apr 2007 20:09:51 -0000	1.257
+++ bfd/elflink.c	26 Apr 2007 06:50:18 -0000
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #define ARCH_SIZE 0
Index: bfd/elfn32-mips.c
===================================================================
RCS file: /cvs/src/src/bfd/elfn32-mips.c,v
retrieving revision 1.37
diff -u -p -r1.37 elfn32-mips.c
--- bfd/elfn32-mips.c	26 Mar 2007 12:23:02 -0000	1.37
+++ bfd/elfn32-mips.c	26 Apr 2007 06:50:19 -0000
@@ -29,8 +29,8 @@ Foundation, Inc., 51 Franklin Street - F
    different MIPS ELF from other targets.  This matters when linking.
    This file supports both, switching at runtime.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "genlink.h"
Index: bfd/elfxx-ia64.c
===================================================================
RCS file: /cvs/src/src/bfd/elfxx-ia64.c,v
retrieving revision 1.197
diff -u -p -r1.197 elfxx-ia64.c
--- bfd/elfxx-ia64.c	26 Mar 2007 23:35:34 -0000	1.197
+++ bfd/elfxx-ia64.c	26 Apr 2007 06:50:22 -0000
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "elf-bfd.h"
 #include "opcode/ia64.h"
Index: bfd/elfxx-mips.c
===================================================================
RCS file: /cvs/src/src/bfd/elfxx-mips.c,v
retrieving revision 1.201
diff -u -p -r1.201 elfxx-mips.c
--- bfd/elfxx-mips.c	17 Apr 2007 13:14:08 -0000	1.201
+++ bfd/elfxx-mips.c	26 Apr 2007 06:50:29 -0000
@@ -1,6 +1,6 @@
 /* MIPS-specific support for ELF
    Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-   2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+   2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 
    Most of the information added by Ian Lance Taylor, Cygnus Support,
    <ian@cygnus.com>.
@@ -27,8 +27,8 @@
 
 /* This file handles functionality common to the different MIPS ABI's.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libiberty.h"
 #include "elf-bfd.h"
Index: bfd/elfxx-sparc.c
===================================================================
RCS file: /cvs/src/src/bfd/elfxx-sparc.c,v
retrieving revision 1.31
diff -u -p -r1.31 elfxx-sparc.c
--- bfd/elfxx-sparc.c	28 Mar 2007 14:39:10 -0000	1.31
+++ bfd/elfxx-sparc.c	26 Apr 2007 06:50:31 -0000
@@ -19,8 +19,8 @@
 
 /* This file handles functionality common to the different SPARC ABI's.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "libiberty.h"
Index: bfd/format.c
===================================================================
RCS file: /cvs/src/src/bfd/format.c,v
retrieving revision 1.23
diff -u -p -r1.23 format.c
--- bfd/format.c	13 Dec 2005 15:34:28 -0000	1.23
+++ bfd/format.c	26 Apr 2007 06:50:31 -0000
@@ -1,6 +1,6 @@
 /* Generic BFD support for file formats.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1999, 2000, 2001, 2002,
-   2003, 2005 Free Software Foundation, Inc.
+   2003, 2005, 2007 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -42,8 +42,8 @@ SUBSECTION
 	File format functions
 */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 /* IMPORT from targets.c.  */
Index: bfd/freebsd.h
===================================================================
RCS file: /cvs/src/src/bfd/freebsd.h,v
retrieving revision 1.8
diff -u -p -r1.8 freebsd.h
--- bfd/freebsd.h	4 May 2005 15:53:31 -0000	1.8
+++ bfd/freebsd.h	26 Apr 2007 06:50:31 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end definitions used by all FreeBSD targets.
-   Copyright 1990, 1991, 1992, 1996, 1997, 2000, 2001, 2002, 2005
+   Copyright 1990, 1991, 1992, 1996, 1997, 2000, 2001, 2002, 2005, 2007
    Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -51,8 +51,8 @@
 	((exec).a_info = \
 	 ((exec).a_info & 0x03ffffff) | ((flags & 0x03f) << 26))
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"
 
Index: bfd/gen-aout.c
===================================================================
RCS file: /cvs/src/src/bfd/gen-aout.c,v
retrieving revision 1.7
diff -u -p -r1.7 gen-aout.c
--- bfd/gen-aout.c	4 May 2005 15:53:31 -0000	1.7
+++ bfd/gen-aout.c	26 Apr 2007 06:50:31 -0000
@@ -1,5 +1,5 @@
 /* Generate parameters for an a.out system.
-   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2001, 2002
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2001, 2002, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -99,8 +99,8 @@ main (argc, argv)
   printf("\n#define MY(OP) CONCAT2 (%s_,OP)\n\n", target);
   printf("#define TARGETNAME \"a.out-%s\"\n\n", target);
 
-  printf("#include \"bfd.h\"\n");
   printf("#include \"sysdep.h\"\n");
+  printf("#include \"bfd.h\"\n");
   printf("#include \"libbfd.h\"\n");
   printf("#include \"libaout.h\"\n");
   printf("\n#include \"aout-target.h\"\n");
Index: bfd/hash.c
===================================================================
RCS file: /cvs/src/src/bfd/hash.c,v
retrieving revision 1.24
diff -u -p -r1.24 hash.c
--- bfd/hash.c	20 Nov 2006 01:38:38 -0000	1.24
+++ bfd/hash.c	26 Apr 2007 06:50:32 -0000
@@ -1,6 +1,6 @@
 /* hash.c -- hash table routines for BFD
    Copyright 1993, 1994, 1995, 1997, 1999, 2001, 2002, 2003, 2004, 2005,
-   2006 Free Software Foundation, Inc.
+   2006, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "objalloc.h"
 #include "libiberty.h"
Index: bfd/host-aout.c
===================================================================
RCS file: /cvs/src/src/bfd/host-aout.c,v
retrieving revision 1.5
diff -u -p -r1.5 host-aout.c
--- bfd/host-aout.c	4 May 2005 15:53:32 -0000	1.5
+++ bfd/host-aout.c	26 Apr 2007 06:50:32 -0000
@@ -1,5 +1,5 @@
 /* BFD backend for local host's a.out binaries
-   Copyright 1990, 1991, 1992, 1994, 1995, 2001
+   Copyright 1990, 1991, 1992, 1994, 1995, 2001, 2007
    Free Software Foundation, Inc.
    Written by Cygnus Support.  Probably John Gilmore's fault.
 
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define	ARCH_SIZE	32
Index: bfd/hp300bsd.c
===================================================================
RCS file: /cvs/src/src/bfd/hp300bsd.c,v
retrieving revision 1.6
diff -u -p -r1.6 hp300bsd.c
--- bfd/hp300bsd.c	4 May 2005 15:53:32 -0000	1.6
+++ bfd/hp300bsd.c	26 Apr 2007 06:50:32 -0000
@@ -1,5 +1,6 @@
 /* BFD back-end for HP 9000/300 (68000-based) machines running BSD Unix.
-   Copyright 1992, 1994, 1995, 2001, 2003 Free Software Foundation, Inc.
+   Copyright 1992, 1994, 1995, 2001, 2003, 2007
+   Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -32,8 +33,8 @@ Foundation, Inc., 51 Franklin Street - F
 #define MY(OP) CONCAT2 (hp300bsd_,OP)
 #define TARGETNAME "a.out-hp300bsd"
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"
 
Index: bfd/hppabsd-core.c
===================================================================
RCS file: /cvs/src/src/bfd/hppabsd-core.c,v
retrieving revision 1.19
diff -u -p -r1.19 hppabsd-core.c
--- bfd/hppabsd-core.c	1 Jun 2006 03:45:58 -0000	1.19
+++ bfd/hppabsd-core.c	26 Apr 2007 06:50:32 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for HPPA BSD core files.
    Copyright 1993, 1994, 1995, 1998, 1999, 2001, 2002, 2003, 2004, 2005,
-   2006 Free Software Foundation, Inc.
+   2006, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -33,8 +33,8 @@
    I would not expect this to be of use to any other host/target, but
    you never know.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #if defined (HOST_HPPABSD)
Index: bfd/hpux-core.c
===================================================================
RCS file: /cvs/src/src/bfd/hpux-core.c,v
retrieving revision 1.21
diff -u -p -r1.21 hpux-core.c
--- bfd/hpux-core.c	16 Sep 2006 18:12:14 -0000	1.21
+++ bfd/hpux-core.c	26 Apr 2007 06:50:34 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for HP/UX core files.
-   Copyright 1993, 1994, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006
-   Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006,
+   2007 Free Software Foundation, Inc.
    Written by Stu Grossman, Cygnus Support.
    Converted to back-end form by Ian Lance Taylor, Cygnus SUpport
 
@@ -23,8 +23,8 @@ Foundation, Inc., 51 Franklin Street - F
 /* This file can only be compiled on systems which use HP/UX style
    core files.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #if defined (HOST_HPPAHPUX) || defined (HOST_HP300HPUX) || defined (HOST_HPPAMPEIX)
Index: bfd/i386aout.c
===================================================================
RCS file: /cvs/src/src/bfd/i386aout.c,v
retrieving revision 1.12
diff -u -p -r1.12 i386aout.c
--- bfd/i386aout.c	4 May 2005 15:53:32 -0000	1.12
+++ bfd/i386aout.c	26 Apr 2007 06:50:34 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for i386 a.out binaries.
-   Copyright 1990, 1991, 1992, 1994, 1996, 1997, 2001, 2002, 2003, 2005
-   Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1994, 1996, 1997, 2001, 2002, 2003, 2005,
+   2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -39,8 +39,8 @@
 #define TARGETNAME "a.out-i386"
 #define NO_WRITE_HEADER_KLUDGE 1
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "aout/aout64.h"
 #include "libaout.h"
Index: bfd/i386bsd.c
===================================================================
RCS file: /cvs/src/src/bfd/i386bsd.c,v
retrieving revision 1.5
diff -u -p -r1.5 i386bsd.c
--- bfd/i386bsd.c	4 May 2005 15:53:32 -0000	1.5
+++ bfd/i386bsd.c	26 Apr 2007 06:50:34 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for i386 a.out binaries under BSD.
-   Copyright 1990, 1991, 1992, 1993, 1994, 2001
+   Copyright 1990, 1991, 1992, 1993, 1994, 2001, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -42,8 +42,8 @@ Foundation, Inc., 51 Franklin Street - F
 #define MY(OP) CONCAT2 (i386bsd_,OP)
 #define TARGETNAME "a.out-i386-bsd"
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"
 
Index: bfd/i386linux.c
===================================================================
RCS file: /cvs/src/src/bfd/i386linux.c,v
retrieving revision 1.18
diff -u -p -r1.18 i386linux.c
--- bfd/i386linux.c	16 Sep 2006 18:12:14 -0000	1.18
+++ bfd/i386linux.c	26 Apr 2007 06:50:34 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for linux flavored i386 a.out binaries.
    Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2001, 2002, 2003,
-   2004, 2006 Free Software Foundation, Inc.
+   2004, 2006, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -26,8 +26,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define MACHTYPE_OK(mtype) ((mtype) == M_386 || (mtype) == M_UNKNOWN)
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "aout/aout64.h"
 #include "aout/stab_gnu.h"
Index: bfd/i386lynx.c
===================================================================
RCS file: /cvs/src/src/bfd/i386lynx.c,v
retrieving revision 1.12
diff -u -p -r1.12 i386lynx.c
--- bfd/i386lynx.c	4 May 2005 15:53:32 -0000	1.12
+++ bfd/i386lynx.c	26 Apr 2007 06:50:34 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for i386 a.out binaries under LynxOS.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1999, 2001, 2002,
-   2003 Free Software Foundation, Inc.
+   2003, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -31,8 +31,8 @@ Foundation, Inc., 51 Franklin Street - F
 #define MY(OP) CONCAT2 (i386lynx_aout_,OP)
 #define TARGETNAME "a.out-i386-lynx"
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #ifndef WRITE_HEADERS
Index: bfd/i386mach3.c
===================================================================
RCS file: /cvs/src/src/bfd/i386mach3.c,v
retrieving revision 1.9
diff -u -p -r1.9 i386mach3.c
--- bfd/i386mach3.c	4 May 2005 15:53:32 -0000	1.9
+++ bfd/i386mach3.c	26 Apr 2007 06:50:34 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for i386 a.out binaries.
-   Copyright 1990, 1991, 1993, 1994, 1995, 1997, 2001, 2002, 2003
+   Copyright 1990, 1991, 1993, 1994, 1995, 1997, 2001, 2002, 2003, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -33,8 +33,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define N_TXTSIZE(x)	((x).a_text)
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "aout/aout64.h"
 #include "aout/stab_gnu.h"
Index: bfd/i386msdos.c
===================================================================
RCS file: /cvs/src/src/bfd/i386msdos.c,v
retrieving revision 1.25
diff -u -p -r1.25 i386msdos.c
--- bfd/i386msdos.c	26 Mar 2007 12:23:03 -0000	1.25
+++ bfd/i386msdos.c	26 Apr 2007 06:50:34 -0000
@@ -23,8 +23,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"
 
Index: bfd/i386os9k.c
===================================================================
RCS file: /cvs/src/src/bfd/i386os9k.c,v
retrieving revision 1.21
diff -u -p -r1.21 i386os9k.c
--- bfd/i386os9k.c	26 Mar 2007 12:23:03 -0000	1.21
+++ bfd/i386os9k.c	26 Apr 2007 06:50:34 -0000
@@ -20,8 +20,8 @@ along with this program; if not, write t
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "libaout.h"		/* BFD a.out internal data structures */
Index: bfd/ieee.c
===================================================================
RCS file: /cvs/src/src/bfd/ieee.c,v
retrieving revision 1.59
diff -u -p -r1.59 ieee.c
--- bfd/ieee.c	21 Apr 2007 07:49:29 -0000	1.59
+++ bfd/ieee.c	26 Apr 2007 06:50:35 -0000
@@ -27,8 +27,8 @@
    token (which is one byte in this lexicon) lookahead recursive decent
    parser.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "ieee.h"
 #include "libieee.h"
Index: bfd/ihex.c
===================================================================
RCS file: /cvs/src/src/bfd/ihex.c,v
retrieving revision 1.34
diff -u -p -r1.34 ihex.c
--- bfd/ihex.c	15 Feb 2007 08:33:53 -0000	1.34
+++ bfd/ihex.c	26 Apr 2007 06:50:36 -0000
@@ -118,8 +118,8 @@ The MRI compiler uses this, which is a r
    18..19	Checksum in hex notation
    20..21	Carriage return, line feed.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
Index: bfd/init.c
===================================================================
RCS file: /cvs/src/src/bfd/init.c,v
retrieving revision 1.7
diff -u -p -r1.7 init.c
--- bfd/init.c	5 Oct 2005 21:24:23 -0000	1.7
+++ bfd/init.c	26 Apr 2007 06:50:36 -0000
@@ -1,5 +1,5 @@
 /* bfd initialization stuff
-   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2003
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2003, 2007
    Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support.
 
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 /*
Index: bfd/irix-core.c
===================================================================
RCS file: /cvs/src/src/bfd/irix-core.c,v
retrieving revision 1.19
diff -u -p -r1.19 irix-core.c
--- bfd/irix-core.c	1 Jun 2006 03:45:58 -0000	1.19
+++ bfd/irix-core.c	26 Apr 2007 06:50:36 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for Irix core files.
-   Copyright 1993, 1994, 1996, 1999, 2001, 2002, 2004, 2006
+   Copyright 1993, 1994, 1996, 1999, 2001, 2002, 2004, 2006, 2007
    Free Software Foundation, Inc.
    Written by Stu Grossman, Cygnus Support.
    Converted to back-end form by Ian Lance Taylor, Cygnus Support
@@ -23,8 +23,8 @@
 /* This file can only be compiled on systems which use Irix style core
    files (namely, Irix 4 and Irix 5, so far).  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #ifdef IRIX_CORE
Index: bfd/libbfd.c
===================================================================
RCS file: /cvs/src/src/bfd/libbfd.c,v
retrieving revision 1.45
diff -u -p -r1.45 libbfd.c
--- bfd/libbfd.c	15 Feb 2007 08:33:53 -0000	1.45
+++ bfd/libbfd.c	26 Apr 2007 06:50:36 -0000
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #ifndef HAVE_GETPAGESIZE
Index: bfd/linker.c
===================================================================
RCS file: /cvs/src/src/bfd/linker.c,v
retrieving revision 1.57
diff -u -p -r1.57 linker.c
--- bfd/linker.c	30 Oct 2006 23:25:50 -0000	1.57
+++ bfd/linker.c	26 Apr 2007 06:50:38 -0000
@@ -1,6 +1,7 @@
 /* linker.c -- BFD linker routines
    Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-   2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+   2003, 2004, 2005, 2006, 2007
+   Free Software Foundation, Inc.
    Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "genlink.h"
Index: bfd/lynx-core.c
===================================================================
RCS file: /cvs/src/src/bfd/lynx-core.c,v
retrieving revision 1.11
diff -u -p -r1.11 lynx-core.c
--- bfd/lynx-core.c	1 Jun 2006 03:45:58 -0000	1.11
+++ bfd/lynx-core.c	26 Apr 2007 06:50:39 -0000
@@ -1,5 +1,5 @@
 /* BFD back end for Lynx core files
-   Copyright 1993, 1994, 1995, 2001, 2002, 2004, 2006
+   Copyright 1993, 1994, 1995, 2001, 2002, 2004, 2006, 2007
    Free Software Foundation, Inc.
    Written by Stu Grossman of Cygnus Support.
 
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #ifdef LYNX_CORE
Index: bfd/m68klinux.c
===================================================================
RCS file: /cvs/src/src/bfd/m68klinux.c,v
retrieving revision 1.20
diff -u -p -r1.20 m68klinux.c
--- bfd/m68klinux.c	16 Sep 2006 18:12:14 -0000	1.20
+++ bfd/m68klinux.c	26 Apr 2007 06:50:39 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for linux flavored m68k a.out binaries.
    Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002,
-   2003, 2004, 2006 Free Software Foundation, Inc.
+   2003, 2004, 2006, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -26,8 +26,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define MACHTYPE_OK(mtype) ((mtype) == M_68020 || (mtype) == M_UNKNOWN)
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "aout/aout64.h"
 #include "aout/stab_gnu.h"
Index: bfd/m88kmach3.c
===================================================================
RCS file: /cvs/src/src/bfd/m88kmach3.c,v
retrieving revision 1.6
diff -u -p -r1.6 m88kmach3.c
--- bfd/m88kmach3.c	4 May 2005 15:53:35 -0000	1.6
+++ bfd/m88kmach3.c	26 Apr 2007 06:50:39 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for Motorola m88k a.out (Mach 3) binaries.
-   Copyright 1990, 1991, 1993, 1994, 1995, 2001, 2003
+   Copyright 1990, 1991, 1993, 1994, 1995, 2001, 2003, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -26,8 +26,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define N_TXTSIZE(x)	((x).a_text)
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"
 
Index: bfd/mach-o.c
===================================================================
RCS file: /cvs/src/src/bfd/mach-o.c,v
retrieving revision 1.23
diff -u -p -r1.23 mach-o.c
--- bfd/mach-o.c	15 Feb 2007 08:33:53 -0000	1.23
+++ bfd/mach-o.c	26 Apr 2007 06:50:40 -0000
@@ -18,9 +18,9 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "mach-o.h"
 #include "bfd.h"
-#include "sysdep.h"
 #include "libbfd.h"
 #include "libiberty.h"
 #include <ctype.h>
Index: bfd/merge.c
===================================================================
RCS file: /cvs/src/src/bfd/merge.c,v
retrieving revision 1.30
diff -u -p -r1.30 merge.c
--- bfd/merge.c	27 Oct 2006 03:22:08 -0000	1.30
+++ bfd/merge.c	26 Apr 2007 06:50:40 -0000
@@ -1,5 +1,5 @@
 /* SEC_MERGE support.
-   Copyright 2001, 2002, 2003, 2004, 2005, 2006
+   Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Jakub Jelinek <jakub@redhat.com>.
 
@@ -22,8 +22,8 @@
 /* This file contains support for merging duplicate entities within sections,
    as used in ELF SHF_MERGE.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "hashtab.h"
 #include "libiberty.h"
Index: bfd/mipsbsd.c
===================================================================
RCS file: /cvs/src/src/bfd/mipsbsd.c,v
retrieving revision 1.17
diff -u -p -r1.17 mipsbsd.c
--- bfd/mipsbsd.c	26 Mar 2007 12:23:03 -0000	1.17
+++ bfd/mipsbsd.c	26 Apr 2007 06:50:40 -0000
@@ -40,8 +40,8 @@ Foundation, Inc., 51 Franklin Street - F
    the tokens.  */
 #define MY(OP) CONCAT2 (mipsbsd_,OP)
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"
 
Index: bfd/mmo.c
===================================================================
RCS file: /cvs/src/src/bfd/mmo.c,v
retrieving revision 1.34
diff -u -p -r1.34 mmo.c
--- bfd/mmo.c	15 Feb 2007 08:33:53 -0000	1.34
+++ bfd/mmo.c	26 Apr 2007 06:50:42 -0000
@@ -195,8 +195,8 @@ EXAMPLE
 | 0x81000000
 | 0x980c0005 - lop_end; symbol table contained five 32-bit words.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libiberty.h"
 #include "elf/mmix.h"
Index: bfd/netbsd-core.c
===================================================================
RCS file: /cvs/src/src/bfd/netbsd-core.c,v
retrieving revision 1.25
diff -u -p -r1.25 netbsd-core.c
--- bfd/netbsd-core.c	1 Jun 2006 03:45:58 -0000	1.25
+++ bfd/netbsd-core.c	26 Apr 2007 06:50:42 -0000
@@ -1,6 +1,6 @@
 /* BFD back end for NetBSD style core files
    Copyright 1988, 1989, 1991, 1992, 1993, 1996, 1998, 1999, 2000, 2001,
-   2002, 2003, 2004, 2005, 2006
+   2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Paul Kranenburg, EUR
 
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"           /* BFD a.out internal data structures.  */
 
Index: bfd/netbsd.h
===================================================================
RCS file: /cvs/src/src/bfd/netbsd.h,v
retrieving revision 1.8
diff -u -p -r1.8 netbsd.h
--- bfd/netbsd.h	4 May 2005 15:53:36 -0000	1.8
+++ bfd/netbsd.h	26 Apr 2007 06:50:42 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end definitions used by all NetBSD targets.
-   Copyright 1990, 1991, 1992, 1994, 1995, 1996, 1997, 1998, 2000, 2002, 2005
-   Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1994, 1995, 1996, 1997, 1998, 2000, 2002,
+   2005, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -50,8 +50,8 @@
 	((exec).a_info = \
 	 ((exec).a_info & 0x03ffffff) | ((flags & 0x03f) << 26))
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"
 
Index: bfd/newsos3.c
===================================================================
RCS file: /cvs/src/src/bfd/newsos3.c,v
retrieving revision 1.7
diff -u -p -r1.7 newsos3.c
--- bfd/newsos3.c	4 May 2005 15:53:36 -0000	1.7
+++ bfd/newsos3.c	26 Apr 2007 06:50:43 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for NewsOS3 (Sony, 68k) binaries.
-   Copyright 1990, 1991, 1994, 1995, 2000, 2001, 2003
+   Copyright 1990, 1991, 1994, 1995, 2000, 2001, 2003, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -33,8 +33,8 @@ Foundation, Inc., 51 Franklin Street - F
 #define TARGET_IS_BIG_ENDIAN_P
 #define N_HEADER_IN_TEXT(x) 0
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "aout/aout64.h"
 #include "aout/stab_gnu.h"
Index: bfd/nlm.c
===================================================================
RCS file: /cvs/src/src/bfd/nlm.c,v
retrieving revision 1.8
diff -u -p -r1.8 nlm.c
--- bfd/nlm.c	4 May 2005 15:53:36 -0000	1.8
+++ bfd/nlm.c	26 Apr 2007 06:50:43 -0000
@@ -1,5 +1,5 @@
 /* NLM (NetWare Loadable Module) executable support for BFD.
-   Copyright 1993, 1994, 2001, 2002, 2003, 2005
+   Copyright 1993, 1994, 2001, 2002, 2003, 2005, 2007
    Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libnlm.h"
 
Index: bfd/nlm32-alpha.c
===================================================================
RCS file: /cvs/src/src/bfd/nlm32-alpha.c,v
retrieving revision 1.14
diff -u -p -r1.14 nlm32-alpha.c
--- bfd/nlm32-alpha.c	4 May 2005 15:53:36 -0000	1.14
+++ bfd/nlm32-alpha.c	26 Apr 2007 06:50:43 -0000
@@ -1,5 +1,5 @@
 /* Support for 32-bit Alpha NLM (NetWare Loadable Module)
-   Copyright 1993, 1994, 2000, 2001, 2002, 2003, 2004, 2005
+   Copyright 1993, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2007
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
@@ -23,8 +23,8 @@
    that an Alpha chip would use a 64 bit format, but, for some reason,
    it doesn't.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define ARCH_SIZE 32
Index: bfd/nlm32-i386.c
===================================================================
RCS file: /cvs/src/src/bfd/nlm32-i386.c,v
retrieving revision 1.11
diff -u -p -r1.11 nlm32-i386.c
--- bfd/nlm32-i386.c	4 May 2005 15:53:36 -0000	1.11
+++ bfd/nlm32-i386.c	26 Apr 2007 06:50:44 -0000
@@ -1,5 +1,5 @@
 /* Support for 32-bit i386 NLM (NetWare Loadable Module)
-   Copyright 1993, 1994, 2000, 2001, 2002, 2003, 2005
+   Copyright 1993, 1994, 2000, 2001, 2002, 2003, 2005, 2007
    Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define ARCH_SIZE 32
Index: bfd/nlm32-ppc.c
===================================================================
RCS file: /cvs/src/src/bfd/nlm32-ppc.c,v
retrieving revision 1.13
diff -u -p -r1.13 nlm32-ppc.c
--- bfd/nlm32-ppc.c	4 May 2005 15:53:36 -0000	1.13
+++ bfd/nlm32-ppc.c	26 Apr 2007 06:50:44 -0000
@@ -1,6 +1,6 @@
 /* Support for 32-bit PowerPC NLM (NetWare Loadable Module)
-   Copyright 1994, 1995, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
+   2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
Index: bfd/nlm32-sparc.c
===================================================================
RCS file: /cvs/src/src/bfd/nlm32-sparc.c,v
retrieving revision 1.16
diff -u -p -r1.16 nlm32-sparc.c
--- bfd/nlm32-sparc.c	2 May 2006 01:41:20 -0000	1.16
+++ bfd/nlm32-sparc.c	26 Apr 2007 06:50:44 -0000
@@ -1,6 +1,6 @@
 /* Support for 32-bit SPARC NLM (NetWare Loadable Module)
-   Copyright 1993, 1994, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
-   Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
+   2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -18,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define ARCH_SIZE 32
Index: bfd/nlmcode.h
===================================================================
RCS file: /cvs/src/src/bfd/nlmcode.h,v
retrieving revision 1.20
diff -u -p -r1.20 nlmcode.h
--- bfd/nlmcode.h	28 Sep 2006 12:59:25 -0000	1.20
+++ bfd/nlmcode.h	26 Apr 2007 06:50:45 -0000
@@ -1,6 +1,6 @@
 /* NLM (NetWare Loadable Module) executable support for BFD.
    Copyright 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005, 2006 Free Software Foundation, Inc.
+   2005, 2006, 2007 Free Software Foundation, Inc.
 
    Written by Fred Fish @ Cygnus Support, using ELF support as the
    template.
@@ -21,8 +21,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libnlm.h"
 
Index: bfd/oasys.c
===================================================================
RCS file: /cvs/src/src/bfd/oasys.c,v
retrieving revision 1.36
diff -u -p -r1.36 oasys.c
--- bfd/oasys.c	26 Mar 2007 12:23:03 -0000	1.36
+++ bfd/oasys.c	26 Apr 2007 06:50:46 -0000
@@ -20,8 +20,8 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 #define UNDERSCORE_HACK 1
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "safe-ctype.h"
 #include "libbfd.h"
 #include "oasys.h"
Index: bfd/opncls.c
===================================================================
RCS file: /cvs/src/src/bfd/opncls.c,v
retrieving revision 1.45
diff -u -p -r1.45 opncls.c
--- bfd/opncls.c	15 Dec 2006 04:13:34 -0000	1.45
+++ bfd/opncls.c	26 Apr 2007 06:50:46 -0000
@@ -1,6 +1,6 @@
 /* opncls.c -- open and close a BFD.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000,
-   2001, 2002, 2003, 2004, 2005, 2006
+   2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
 
    Written by Cygnus Support.
@@ -21,8 +21,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "objalloc.h"
 #include "libbfd.h"
 #include "libiberty.h"
Index: bfd/osf-core.c
===================================================================
RCS file: /cvs/src/src/bfd/osf-core.c,v
retrieving revision 1.18
diff -u -p -r1.18 osf-core.c
--- bfd/osf-core.c	16 Sep 2006 18:12:14 -0000	1.18
+++ bfd/osf-core.c	26 Apr 2007 06:50:46 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for OSF/1 core files.
-   Copyright 1993, 1994, 1995, 1998, 1999, 2001, 2002, 2003, 2004, 2006
-   Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1998, 1999, 2001, 2002, 2003, 2004, 2006,
+   2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -21,8 +21,8 @@ Foundation, Inc., 51 Franklin Street - F
 /* This file can only be compiled on systems which use OSF/1 style
    core files.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #include <sys/user.h>
Index: bfd/pc532-mach.c
===================================================================
RCS file: /cvs/src/src/bfd/pc532-mach.c,v
retrieving revision 1.9
diff -u -p -r1.9 pc532-mach.c
--- bfd/pc532-mach.c	4 May 2005 15:53:36 -0000	1.9
+++ bfd/pc532-mach.c	26 Apr 2007 06:50:46 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for Mach3/532 a.out-ish binaries.
-   Copyright 1990, 1991, 1992, 1994, 1995, 2000, 2001, 2002
+   Copyright 1990, 1991, 1992, 1994, 1995, 2000, 2001, 2002, 2007
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -60,8 +60,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define TARGETNAME "a.out-pc532-mach"
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libaout.h"
 #include "libbfd.h"
 #include "aout/aout64.h"
Index: bfd/pdp11.c
===================================================================
RCS file: /cvs/src/src/bfd/pdp11.c,v
retrieving revision 1.37
diff -u -p -r1.37 pdp11.c
--- bfd/pdp11.c	26 Mar 2007 12:23:03 -0000	1.37
+++ bfd/pdp11.c	26 Apr 2007 06:50:49 -0000
@@ -70,6 +70,7 @@
 		  && ((x).a_info != A_MAGIC5) \
 		  && ((x).a_info != A_MAGIC6))
 
+#include "sysdep.h"
 #include "bfd.h"
 
 #define external_exec pdp11_external_exec
@@ -123,7 +124,6 @@ struct pdp11_external_nlist
 
 #define WRITE_HEADERS(abfd, execp) pdp11_aout_write_headers (abfd, execp)
 
-#include "sysdep.h"
 #include "libbfd.h"
 #include "libaout.h"
 
Index: bfd/pe-arm.c
===================================================================
RCS file: /cvs/src/src/bfd/pe-arm.c,v
retrieving revision 1.11
diff -u -p -r1.11 pe-arm.c
--- bfd/pe-arm.c	21 Aug 2006 08:12:45 -0000	1.11
+++ bfd/pe-arm.c	26 Apr 2007 06:50:49 -0000
@@ -1,5 +1,6 @@
 /* BFD back-end for ARM PECOFF files.
-   Copyright 1995, 1996, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1999, 2000, 2001, 2002, 2007
+   Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -28,8 +29,8 @@ Foundation, Inc., 51 Franklin Street - F
   bfd_armpe_process_before_allocation
 #endif
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #ifndef TARGET_LITTLE_SYM
 #define TARGET_LITTLE_SYM    armpe_little_vec
Index: bfd/pe-i386.c
===================================================================
RCS file: /cvs/src/src/bfd/pe-i386.c,v
retrieving revision 1.11
diff -u -p -r1.11 pe-i386.c
--- bfd/pe-i386.c	29 Sep 2006 03:33:56 -0000	1.11
+++ bfd/pe-i386.c	26 Apr 2007 06:50:49 -0000
@@ -1,5 +1,6 @@
 /* BFD back-end for Intel 386 PECOFF files.
-   Copyright 1995, 1996, 1999, 2001, 2002, 2004 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1999, 2001, 2002, 2004, 2007
+   Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SYM 		i386pe_vec
 #define TARGET_NAME 		"pe-i386"
Index: bfd/pe-mcore.c
===================================================================
RCS file: /cvs/src/src/bfd/pe-mcore.c,v
retrieving revision 1.4
diff -u -p -r1.4 pe-mcore.c
--- bfd/pe-mcore.c	4 May 2005 15:53:37 -0000	1.4
+++ bfd/pe-mcore.c	26 Apr 2007 06:50:49 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for MCore PECOFF files.
-   Copyright 1999, 2002 Free Software Foundation, Inc.
+   Copyright 1999, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #ifndef TARGET_BIG_SYM
 #define TARGET_BIG_SYM       mcore_pe_big_vec
Index: bfd/pe-mips.c
===================================================================
RCS file: /cvs/src/src/bfd/pe-mips.c,v
retrieving revision 1.19
diff -u -p -r1.19 pe-mips.c
--- bfd/pe-mips.c	26 Mar 2007 12:23:03 -0000	1.19
+++ bfd/pe-mips.c	26 Apr 2007 06:50:50 -0000
@@ -23,8 +23,8 @@
 #define COFF_LONG_SECTION_NAMES
 #define PCRELOFFSET TRUE
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/mipspe.h"
 #include "coff/internal.h"
Index: bfd/pe-ppc.c
===================================================================
RCS file: /cvs/src/src/bfd/pe-ppc.c,v
retrieving revision 1.7
diff -u -p -r1.7 pe-ppc.c
--- bfd/pe-ppc.c	4 May 2005 15:53:37 -0000	1.7
+++ bfd/pe-ppc.c	26 Apr 2007 06:50:50 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for PowerPC PECOFF files.
-   Copyright 1995, 1996, 1999, 2001 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1999, 2001, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -18,8 +18,8 @@ along with this program; if not, write t
 Foundation, 51 Franklin Street - Fifth Floor,
 Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define E_FILENMLEN     18
 
Index: bfd/pe-sh.c
===================================================================
RCS file: /cvs/src/src/bfd/pe-sh.c,v
retrieving revision 1.6
diff -u -p -r1.6 pe-sh.c
--- bfd/pe-sh.c	4 May 2005 15:53:37 -0000	1.6
+++ bfd/pe-sh.c	26 Apr 2007 06:50:50 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for SH PECOFF files.
-   Copyright 1995, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1995, 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SHL_SYM shlpe_vec
 #define TARGET_SHL_NAME "pe-shl"
Index: bfd/pe-x86_64.c
===================================================================
RCS file: /cvs/src/src/bfd/pe-x86_64.c,v
retrieving revision 1.1
diff -u -p -r1.1 pe-x86_64.c
--- bfd/pe-x86_64.c	20 Sep 2006 11:35:07 -0000	1.1
+++ bfd/pe-x86_64.c	26 Apr 2007 06:50:50 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for Intel/AMD x86_64 PECOFF files.
-   Copyright 2006 Free Software Foundation, Inc.
+   Copyright 2006, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -19,8 +19,8 @@
    
    Written by Kai Tietz, OneVision Software GmbH&CoKg.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SYM 		x86_64pe_vec
 #define TARGET_NAME 		"pe-x86-64"
Index: bfd/peXXigen.c
===================================================================
RCS file: /cvs/src/src/bfd/peXXigen.c,v
retrieving revision 1.40
diff -u -p -r1.40 peXXigen.c
--- bfd/peXXigen.c	22 Mar 2007 15:52:29 -0000	1.40
+++ bfd/peXXigen.c	26 Apr 2007 06:50:52 -0000
@@ -1,6 +1,6 @@
 /* Support for the generic parts of PE/PEI; the common executable parts.
    Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005, 2006 Free Software Foundation, Inc.
+   2005, 2006, 2007 Free Software Foundation, Inc.
    Written by Cygnus Solutions.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -56,8 +56,8 @@
    depending on whether we're compiling for straight PE or PE+.  */
 #define COFF_WITH_XX
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "coff/internal.h"
 
Index: bfd/pef.c
===================================================================
RCS file: /cvs/src/src/bfd/pef.c,v
retrieving revision 1.21
diff -u -p -r1.21 pef.c
--- bfd/pef.c	15 Feb 2007 08:33:53 -0000	1.21
+++ bfd/pef.c	26 Apr 2007 06:50:52 -0000
@@ -18,11 +18,11 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "safe-ctype.h"
 #include "pef.h"
 #include "pef-traceback.h"
 #include "bfd.h"
-#include "sysdep.h"
 #include "libbfd.h"
 #include "libiberty.h"
 
Index: bfd/pei-arm.c
===================================================================
RCS file: /cvs/src/src/bfd/pei-arm.c,v
retrieving revision 1.11
diff -u -p -r1.11 pei-arm.c
--- bfd/pei-arm.c	21 Aug 2006 08:12:45 -0000	1.11
+++ bfd/pei-arm.c	26 Apr 2007 06:50:52 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for arm PE IMAGE COFF files.
-   Copyright 1995, 1996, 1999, 2002 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1999, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #ifndef TARGET_LITTLE_SYM
 #define TARGET_LITTLE_SYM  armpei_little_vec
Index: bfd/pei-i386.c
===================================================================
RCS file: /cvs/src/src/bfd/pei-i386.c,v
retrieving revision 1.10
diff -u -p -r1.10 pei-i386.c
--- bfd/pei-i386.c	29 Sep 2006 03:33:56 -0000	1.10
+++ bfd/pei-i386.c	26 Apr 2007 06:50:52 -0000
@@ -1,5 +1,6 @@
 /* BFD back-end for Intel 386 PE IMAGE COFF files.
-   Copyright 1995, 1996, 1999, 2002, 2004 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1999, 2002, 2004, 2007
+   Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +18,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SYM 		i386pei_vec
 #define TARGET_NAME 		"pei-i386"
Index: bfd/pei-mcore.c
===================================================================
RCS file: /cvs/src/src/bfd/pei-mcore.c,v
retrieving revision 1.5
diff -u -p -r1.5 pei-mcore.c
--- bfd/pei-mcore.c	4 May 2005 15:53:37 -0000	1.5
+++ bfd/pei-mcore.c	26 Apr 2007 06:50:52 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for MCore PECOFF files.
-   Copyright 1999, 2002 Free Software Foundation, Inc.
+   Copyright 1999, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #ifndef TARGET_BIG_SYM
 #define TARGET_BIG_SYM       mcore_pei_big_vec
Index: bfd/pei-mips.c
===================================================================
RCS file: /cvs/src/src/bfd/pei-mips.c,v
retrieving revision 1.6
diff -u -p -r1.6 pei-mips.c
--- bfd/pei-mips.c	4 May 2005 15:53:37 -0000	1.6
+++ bfd/pei-mips.c	26 Apr 2007 06:50:52 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for MIPS PE IMAGE COFF files.
-   Copyright 1995, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1995, 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SYM mipslpei_vec
 #define TARGET_NAME "pei-mips"
Index: bfd/pei-ppc.c
===================================================================
RCS file: /cvs/src/src/bfd/pei-ppc.c,v
retrieving revision 1.6
diff -u -p -r1.6 pei-ppc.c
--- bfd/pei-ppc.c	4 May 2005 15:53:37 -0000	1.6
+++ bfd/pei-ppc.c	26 Apr 2007 06:50:52 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for PowerPC PE IMAGE COFF files.
-   Copyright 1995, 1996, 1999 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1999, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -18,8 +18,8 @@ along with this program; if not, write t
 Foundation, 51 Franklin Street - Fifth Floor,
 Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 /* setting up for a PE environment stolen directly from the i386 structure */
 #define E_FILNMLEN	18	/* # characters in a file name		*/
Index: bfd/pei-sh.c
===================================================================
RCS file: /cvs/src/src/bfd/pei-sh.c,v
retrieving revision 1.6
diff -u -p -r1.6 pei-sh.c
--- bfd/pei-sh.c	4 May 2005 15:53:37 -0000	1.6
+++ bfd/pei-sh.c	26 Apr 2007 06:50:52 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for SH PE IMAGE COFF files.
-   Copyright 1995, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1995, 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SHL_SYM shlpei_vec
 #define TARGET_SHL_NAME "pei-shl"
Index: bfd/pei-x86_64.c
===================================================================
RCS file: /cvs/src/src/bfd/pei-x86_64.c,v
retrieving revision 1.1
diff -u -p -r1.1 pei-x86_64.c
--- bfd/pei-x86_64.c	20 Sep 2006 11:35:07 -0000	1.1
+++ bfd/pei-x86_64.c	26 Apr 2007 06:50:52 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for Intel 386 PE IMAGE COFF files.
-   Copyright 2006 Free Software Foundation, Inc.
+   Copyright 2006, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -19,8 +19,8 @@
    
    Written by Kai Tietz, OneVision Software GmbH&CoKg.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #define TARGET_SYM 		x86_64pei_vec
 #define TARGET_NAME 		"pei-x86-64"
Index: bfd/ppcboot.c
===================================================================
RCS file: /cvs/src/src/bfd/ppcboot.c,v
retrieving revision 1.27
diff -u -p -r1.27 ppcboot.c
--- bfd/ppcboot.c	15 Feb 2007 08:33:53 -0000	1.27
+++ bfd/ppcboot.c	26 Apr 2007 06:50:52 -0000
@@ -32,9 +32,9 @@ Foundation, Inc., 51 Franklin Street - F
    the file.  objcopy cooperates by specially setting the start
    address to zero by default.  */
 
+#include "sysdep.h"
 #include "safe-ctype.h"
 #include "bfd.h"
-#include "sysdep.h"
 #include "libbfd.h"
 
 /* PPCbug location structure */
Index: bfd/ptrace-core.c
===================================================================
RCS file: /cvs/src/src/bfd/ptrace-core.c,v
retrieving revision 1.15
diff -u -p -r1.15 ptrace-core.c
--- bfd/ptrace-core.c	1 Jun 2006 03:45:58 -0000	1.15
+++ bfd/ptrace-core.c	26 Apr 2007 06:50:52 -0000
@@ -1,6 +1,6 @@
 /* BFD backend for core files which use the ptrace_user structure
-   Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006
-   Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004,
+   2006, 2007  Free Software Foundation, Inc.
    The structure of this file is based on trad-core.c written by John Gilmore
    of Cygnus Support.
    Modified to work with the ptrace_user structure by Kevin A. Buettner.
@@ -24,8 +24,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #ifdef PTRACE_CORE
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #include <sys/param.h>
Index: bfd/reloc.c
===================================================================
RCS file: /cvs/src/src/bfd/reloc.c,v
retrieving revision 1.164
diff -u -p -r1.164 reloc.c
--- bfd/reloc.c	26 Mar 2007 12:23:03 -0000	1.164
+++ bfd/reloc.c	26 Apr 2007 06:50:54 -0000
@@ -47,8 +47,8 @@ SECTION
 /* DO compile in the reloc_code name table from libbfd.h.  */
 #define _BFD_MAKE_TABLE_bfd_reloc_code_real
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 /*
Index: bfd/reloc16.c
===================================================================
RCS file: /cvs/src/src/bfd/reloc16.c,v
retrieving revision 1.15
diff -u -p -r1.15 reloc16.c
--- bfd/reloc16.c	4 May 2005 15:53:38 -0000	1.15
+++ bfd/reloc16.c	26 Apr 2007 06:50:54 -0000
@@ -1,6 +1,6 @@
 /* 8 and 16 bit COFF relocation functions, for BFD.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 2000, 2001,
-   2002, 2003, 2004 Free Software Foundation, Inc.
+   2002, 2003, 2004, 2007 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -32,8 +32,8 @@ Foundation, Inc., 51 Franklin Street - F
    file) (unless info->keep_memory is FALSE, in which case they should
    free up the relocs after dealing with them).  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 #include "genlink.h"
Index: bfd/riscix.c
===================================================================
RCS file: /cvs/src/src/bfd/riscix.c,v
retrieving revision 1.16
diff -u -p -r1.16 riscix.c
--- bfd/riscix.c	26 Mar 2007 12:23:03 -0000	1.16
+++ bfd/riscix.c	26 Apr 2007 06:50:55 -0000
@@ -103,8 +103,8 @@
                   && ((x).a_info != NMAGIC))
 #define N_MAGIC(x) ((x).a_info & ~07200)
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #define WRITE_HEADERS(abfd, execp)					    \
Index: bfd/rs6000-core.c
===================================================================
RCS file: /cvs/src/src/bfd/rs6000-core.c,v
retrieving revision 1.18
diff -u -p -r1.18 rs6000-core.c
--- bfd/rs6000-core.c	1 Jun 2006 03:45:58 -0000	1.18
+++ bfd/rs6000-core.c	26 Apr 2007 06:50:56 -0000
@@ -1,6 +1,6 @@
 /* IBM RS/6000 "XCOFF" back-end for BFD.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000,
-   2001, 2002, 2004, 2006
+   2001, 2002, 2004, 2006, 2007
    Free Software Foundation, Inc.
    FIXME: Can someone provide a transliteration of this name into ASCII?
    Using the following chars caused a compiler warning on HIUX (so I replaced
@@ -44,8 +44,8 @@
 #define _LONG_LONG
 #endif
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #ifdef AIX_CORE
Index: bfd/sco5-core.c
===================================================================
RCS file: /cvs/src/src/bfd/sco5-core.c,v
retrieving revision 1.20
diff -u -p -r1.20 sco5-core.c
--- bfd/sco5-core.c	1 Jun 2006 03:45:58 -0000	1.20
+++ bfd/sco5-core.c	26 Apr 2007 06:50:56 -0000
@@ -1,5 +1,5 @@
 /* BFD back end for SCO5 core files (U-area and raw sections)
-   Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+   Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Jouke Numan <jnuman@hiscom.nl>
 
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"		/* BFD a.out internal data structures */
 
Index: bfd/section.c
===================================================================
RCS file: /cvs/src/src/bfd/section.c,v
retrieving revision 1.93
diff -u -p -r1.93 section.c
--- bfd/section.c	27 Oct 2006 03:22:08 -0000	1.93
+++ bfd/section.c	26 Apr 2007 06:50:57 -0000
@@ -1,6 +1,6 @@
 /* Object file "section" support for the BFD library.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-   2000, 2001, 2002, 2003, 2004, 2005, 2006
+   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Cygnus Support.
 
@@ -133,8 +133,8 @@ SUBSECTION
 
 */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 
Index: bfd/simple.c
===================================================================
RCS file: /cvs/src/src/bfd/simple.c,v
retrieving revision 1.25
diff -u -p -r1.25 simple.c
--- bfd/simple.c	3 Jun 2005 09:52:50 -0000	1.25
+++ bfd/simple.c	26 Apr 2007 06:50:57 -0000
@@ -1,5 +1,5 @@
 /* simple.c -- BFD simple client routines
-   Copyright 2002, 2003, 2004, 2005
+   Copyright 2002, 2003, 2004, 2005, 2007
    Free Software Foundation, Inc.
    Contributed by MontaVista Software, Inc.
 
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "bfdlink.h"
 
Index: bfd/som.c
===================================================================
RCS file: /cvs/src/src/bfd/som.c,v
retrieving revision 1.63
diff -u -p -r1.63 som.c
--- bfd/som.c	26 Mar 2007 12:23:03 -0000	1.63
+++ bfd/som.c	26 Apr 2007 06:51:00 -0000
@@ -24,8 +24,8 @@
    02110-1301, USA.  */
 
 #include "alloca-conf.h"
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 
 #if defined (HOST_HPPAHPUX) || defined (HOST_HPPABSD) || defined (HOST_HPPAOSF) || defined(HOST_HPPAMPEIX)
 
Index: bfd/sparclinux.c
===================================================================
RCS file: /cvs/src/src/bfd/sparclinux.c,v
retrieving revision 1.20
diff -u -p -r1.20 sparclinux.c
--- bfd/sparclinux.c	16 Sep 2006 18:12:14 -0000	1.20
+++ bfd/sparclinux.c	26 Apr 2007 06:51:01 -0000
@@ -1,6 +1,6 @@
 /* BFD back-end for linux flavored sparc a.out binaries.
    Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002,
-   2003, 2004, 2006 Free Software Foundation, Inc.
+   2003, 2004, 2006, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -27,8 +27,8 @@
 
 #define MACHTYPE_OK(mtype) ((mtype) == M_SPARC || (mtype) == M_UNKNOWN)
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "aout/aout64.h"
 #include "aout/stab_gnu.h"
Index: bfd/sparclynx.c
===================================================================
RCS file: /cvs/src/src/bfd/sparclynx.c,v
retrieving revision 1.14
diff -u -p -r1.14 sparclynx.c
--- bfd/sparclynx.c	18 Aug 2005 03:48:26 -0000	1.14
+++ bfd/sparclynx.c	26 Apr 2007 06:51:01 -0000
@@ -1,6 +1,6 @@
 /* BFD support for Sparc binaries under LynxOS.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000,
-   2001, 2002, 2003, 2005 Free Software Foundation, Inc.
+   2001, 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -24,8 +24,8 @@ Foundation, Inc., 51 Franklin Street - F
 #define MY(OP) CONCAT2 (sparclynx_aout_,OP)
 #define TARGETNAME "a.out-sparc-lynx"
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 
 #include "aout/sun4.h"
Index: bfd/srec.c
===================================================================
RCS file: /cvs/src/src/bfd/srec.c,v
retrieving revision 1.40
diff -u -p -r1.40 srec.c
--- bfd/srec.c	15 Feb 2007 08:33:53 -0000	1.40
+++ bfd/srec.c	26 Apr 2007 06:51:01 -0000
@@ -101,8 +101,8 @@
 	We allow symbols to be anywhere in the data stream - the module names
 	are always ignored.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
Index: bfd/stabs.c
===================================================================
RCS file: /cvs/src/src/bfd/stabs.c,v
retrieving revision 1.28
diff -u -p -r1.28 stabs.c
--- bfd/stabs.c	27 Oct 2006 03:22:08 -0000	1.28
+++ bfd/stabs.c	26 Apr 2007 06:51:02 -0000
@@ -1,6 +1,6 @@
 /* Stabs in sections linking support.
    Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
-   2006 Free Software Foundation, Inc.
+   2006, 2007 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -22,8 +22,8 @@
 /* This file contains support for linking stabs in sections, as used
    on COFF and ELF.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "aout/stab_gnu.h"
 #include "safe-ctype.h"
Index: bfd/syms.c
===================================================================
RCS file: /cvs/src/src/bfd/syms.c,v
retrieving revision 1.42
diff -u -p -r1.42 syms.c
--- bfd/syms.c	5 Feb 2007 19:50:12 -0000	1.42
+++ bfd/syms.c	26 Apr 2007 06:51:03 -0000
@@ -1,6 +1,6 @@
 /* Generic symbol-table support for the BFD library.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-   2000, 2001, 2002, 2003, 2004
+   2000, 2001, 2002, 2003, 2004, 2007
    Free Software Foundation, Inc.
    Written by Cygnus Support.
 
@@ -315,8 +315,8 @@ CODE_FRAGMENT
 .
 */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "safe-ctype.h"
 #include "bfdlink.h"
Index: bfd/targets.c
===================================================================
RCS file: /cvs/src/src/bfd/targets.c,v
retrieving revision 1.160
diff -u -p -r1.160 targets.c
--- bfd/targets.c	26 Mar 2007 12:23:03 -0000	1.160
+++ bfd/targets.c	26 Apr 2007 06:51:03 -0000
@@ -1,6 +1,6 @@
 /* Generic target-file-type support for the BFD library.
    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-   2000, 2001, 2002, 2003, 2004, 2005, 2006
+   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Cygnus Support.
 
@@ -20,8 +20,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "fnmatch.h"
 
Index: bfd/tekhex.c
===================================================================
RCS file: /cvs/src/src/bfd/tekhex.c,v
retrieving revision 1.30
diff -u -p -r1.30 tekhex.c
--- bfd/tekhex.c	5 Jan 2007 10:12:25 -0000	1.30
+++ bfd/tekhex.c	26 Apr 2007 06:51:04 -0000
@@ -1,6 +1,6 @@
 /* BFD backend for Extended Tektronix Hex Format  objects.
    Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002,
-   2003, 2004 Free Software Foundation, Inc.
+   2003, 2004, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -65,8 +65,8 @@
   The data can come out of order, and may be discontigous. This is a
   serial protocol, so big files are unlikely, so we keep a list of 8k chunks.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libiberty.h"
 
Index: bfd/trad-core.c
===================================================================
RCS file: /cvs/src/src/bfd/trad-core.c,v
retrieving revision 1.25
diff -u -p -r1.25 trad-core.c
--- bfd/trad-core.c	20 Nov 2006 02:09:56 -0000	1.25
+++ bfd/trad-core.c	26 Apr 2007 06:51:04 -0000
@@ -1,6 +1,6 @@
 /* BFD back end for traditional Unix core files (U-area and raw sections)
    Copyright 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999,
-   2000, 2001, 2002, 2003, 2004, 2005, 2006
+   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by John Gilmore of Cygnus Support.
 
@@ -20,8 +20,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"           /* BFD a.out internal data structures */
 
Index: bfd/vaxbsd.c
===================================================================
RCS file: /cvs/src/src/bfd/vaxbsd.c,v
retrieving revision 1.4
diff -u -p -r1.4 vaxbsd.c
--- bfd/vaxbsd.c	4 May 2005 15:53:40 -0000	1.4
+++ bfd/vaxbsd.c	26 Apr 2007 06:51:04 -0000
@@ -1,5 +1,5 @@
 /* BFD back-end for BSD and Ultrix/VAX (1K page size) a.out-ish binaries.
-   Copyright 2002, 2003 Free Software Foundation, Inc.
+   Copyright 2002, 2003, 2007 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -32,8 +32,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define TARGETNAME "a.out-vax-bsd"
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libaout.h"
 
Index: bfd/versados.c
===================================================================
RCS file: /cvs/src/src/bfd/versados.c,v
retrieving revision 1.32
diff -u -p -r1.32 versados.c
--- bfd/versados.c	26 Mar 2007 12:23:03 -0000	1.32
+++ bfd/versados.c	26 Apr 2007 06:51:04 -0000
@@ -37,8 +37,8 @@
    o Object Text Record
    o End Record.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "libiberty.h"
 
Index: bfd/vms-gsd.c
===================================================================
RCS file: /cvs/src/src/bfd/vms-gsd.c,v
retrieving revision 1.19
diff -u -p -r1.19 vms-gsd.c
--- bfd/vms-gsd.c	4 May 2005 15:53:40 -0000	1.19
+++ bfd/vms-gsd.c	26 Apr 2007 06:51:05 -0000
@@ -1,7 +1,7 @@
 /* vms-gsd.c -- BFD back-end for VAX (openVMS/VAX) and
    EVAX (openVMS/Alpha) files.
-   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
-   Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
+   2007 Free Software Foundation, Inc.
 
    go and read the openVMS linker manual (esp. appendix B)
    if you don't know what's going on here :-)
@@ -22,8 +22,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 
Index: bfd/vms-hdr.c
===================================================================
RCS file: /cvs/src/src/bfd/vms-hdr.c,v
retrieving revision 1.19
diff -u -p -r1.19 vms-hdr.c
--- bfd/vms-hdr.c	16 Sep 2006 18:12:14 -0000	1.19
+++ bfd/vms-hdr.c	26 Apr 2007 06:51:05 -0000
@@ -1,7 +1,7 @@
 /* vms-hdr.c -- BFD back-end for VMS/VAX (openVMS/VAX) and
    EVAX (openVMS/Alpha) files.
-   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006
-   Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006,
+   2007 Free Software Foundation, Inc.
 
    HDR record handling functions
    EMH record handling functions
@@ -25,9 +25,9 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "bfdver.h"
-#include "sysdep.h"
 #include "bfdlink.h"
 #include "safe-ctype.h"
 #include "libbfd.h"
Index: bfd/vms-misc.c
===================================================================
RCS file: /cvs/src/src/bfd/vms-misc.c,v
retrieving revision 1.24
diff -u -p -r1.24 vms-misc.c
--- bfd/vms-misc.c	4 May 2005 15:53:40 -0000	1.24
+++ bfd/vms-misc.c	26 Apr 2007 06:51:06 -0000
@@ -1,7 +1,7 @@
 /* vms-misc.c -- Miscellaneous functions for VAX (openVMS/VAX) and
    EVAX (openVMS/Alpha) files.
-   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
-   Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
+   2007 Free Software Foundation, Inc.
 
    Written by Klaus K"ampf (kkaempf@rmi.de)
 
@@ -23,8 +23,8 @@
 #include <stdarg.h>
 #endif
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 
Index: bfd/vms-tir.c
===================================================================
RCS file: /cvs/src/src/bfd/vms-tir.c,v
retrieving revision 1.16
diff -u -p -r1.16 vms-tir.c
--- bfd/vms-tir.c	4 May 2005 15:53:40 -0000	1.16
+++ bfd/vms-tir.c	26 Apr 2007 06:51:06 -0000
@@ -1,6 +1,6 @@
 /* vms-tir.c -- BFD back-end for VAX (openVMS/VAX) and
    EVAX (openVMS/Alpha) files.
-   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005
+   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2007
    Free Software Foundation, Inc.
 
    TIR record handling functions
@@ -34,8 +34,8 @@
 	qw	quadword (8 byte, 64 bit)
 	da	data stream  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "vms.h"
Index: bfd/vms.c
===================================================================
RCS file: /cvs/src/src/bfd/vms.c,v
retrieving revision 1.41
diff -u -p -r1.41 vms.c
--- bfd/vms.c	26 Mar 2007 12:23:03 -0000	1.41
+++ bfd/vms.c	26 Apr 2007 06:51:07 -0000
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 
Index: bfd/xcofflink.c
===================================================================
RCS file: /cvs/src/src/bfd/xcofflink.c,v
retrieving revision 1.45
diff -u -p -r1.45 xcofflink.c
--- bfd/xcofflink.c	1 Jun 2006 03:45:58 -0000	1.45
+++ bfd/xcofflink.c	26 Apr 2007 06:51:10 -0000
@@ -1,6 +1,6 @@
 /* POWER/PowerPC XCOFF linker support.
    Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005, 2006 Free Software Foundation, Inc.
+   2005, 2006, 2007 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>, Cygnus Support.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -19,8 +19,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libbfd.h"
 #include "coff/internal.h"
Index: bfd/xsym.c
===================================================================
RCS file: /cvs/src/src/bfd/xsym.c,v
retrieving revision 1.20
diff -u -p -r1.20 xsym.c
--- bfd/xsym.c	15 Feb 2007 08:33:53 -0000	1.20
+++ bfd/xsym.c	26 Apr 2007 06:51:11 -0000
@@ -18,9 +18,9 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "xsym.h"
 #include "bfd.h"
-#include "sysdep.h"
 #include "libbfd.h"
 
 #define bfd_sym_close_and_cleanup                   _bfd_generic_close_and_cleanup
Index: bfd/xtensa-isa.c
===================================================================
RCS file: /cvs/src/src/bfd/xtensa-isa.c,v
retrieving revision 1.8
diff -u -p -r1.8 xtensa-isa.c
--- bfd/xtensa-isa.c	4 May 2005 15:53:41 -0000	1.8
+++ bfd/xtensa-isa.c	26 Apr 2007 06:51:12 -0000
@@ -1,5 +1,5 @@
 /* Configurable Xtensa ISA support.
-   Copyright 2003, 2004, 2005 Free Software Foundation, Inc.
+   Copyright 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -17,8 +17,8 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libbfd.h"
 #include "xtensa-isa.h"
 #include "xtensa-isa-internal.h"
Index: binutils/addr2line.c
===================================================================
RCS file: /cvs/src/src/binutils/addr2line.c,v
retrieving revision 1.30
diff -u -p -r1.30 addr2line.c
--- binutils/addr2line.c	19 Apr 2007 10:43:47 -0000	1.30
+++ binutils/addr2line.c	26 Apr 2007 06:51:17 -0000
@@ -29,9 +29,7 @@
    both forms write results to stdout, the second form reads addresses
    to be converted from stdin.  */
 
-#include "config.h"
-#include <string.h>
-
+#include "sysdep.h"
 #include "bfd.h"
 #include "getopt.h"
 #include "libiberty.h"
Index: binutils/ar.c
===================================================================
RCS file: /cvs/src/src/binutils/ar.c,v
retrieving revision 1.50
diff -u -p -r1.50 ar.c
--- binutils/ar.c	17 Feb 2007 13:33:53 -0000	1.50
+++ binutils/ar.c	26 Apr 2007 06:51:17 -0000
@@ -26,12 +26,13 @@
    when name truncated. No way to specify pos_end. Error messages should be
    more consistent.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "libiberty.h"
 #include "progress.h"
-#include "bucomm.h"
 #include "aout/ar.h"
 #include "libbfd.h"
+#include "bucomm.h"
 #include "arsup.h"
 #include "filenames.h"
 #include "binemul.h"
Index: binutils/arparse.y
===================================================================
RCS file: /cvs/src/src/binutils/arparse.y,v
retrieving revision 1.7
diff -u -p -r1.7 arparse.y
--- binutils/arparse.y	8 May 2005 14:17:38 -0000	1.7
+++ binutils/arparse.y	26 Apr 2007 06:51:17 -0000
@@ -1,7 +1,7 @@
 %{
 /* arparse.y - Stange script language parser */
 
-/*   Copyright 1992, 1993, 1995, 1997, 1999, 2002, 2003
+/*   Copyright 1992, 1993, 1995, 1997, 1999, 2002, 2003, 2007
      Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
@@ -26,8 +26,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 */
 #define DONTDECLARE_MALLOC
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "arsup.h"
 extern int verbose;
 extern int yylex (void);
Index: binutils/arsup.c
===================================================================
RCS file: /cvs/src/src/binutils/arsup.c,v
retrieving revision 1.16
diff -u -p -r1.16 arsup.c
--- binutils/arsup.c	8 May 2005 14:17:38 -0000	1.16
+++ binutils/arsup.c	26 Apr 2007 06:51:17 -0000
@@ -1,6 +1,6 @@
 /* arsup.c - Archive support for MRI compatibility
    Copyright 1992, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
-   2004 Free Software Foundation, Inc.
+   2004, 2007 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
 
@@ -25,11 +25,12 @@
    This file looks after requests from arparse.y, to provide the MRI
    style librarian command syntax + 1 word LIST.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "arsup.h"
 #include "libiberty.h"
-#include "bucomm.h"
 #include "filenames.h"
+#include "bucomm.h"
+#include "arsup.h"
 
 static void map_over_list
   (bfd *, void (*function) (bfd *, bfd *), struct list *);
Index: binutils/bin2c.c
===================================================================
RCS file: /cvs/src/src/binutils/bin2c.c,v
retrieving revision 1.1
diff -u -p -r1.1 bin2c.c
--- binutils/bin2c.c	27 Feb 2007 08:31:45 -0000	1.1
+++ binutils/bin2c.c	26 Apr 2007 06:51:17 -0000
@@ -18,6 +18,7 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "bucomm.h"
 
Index: binutils/binemul.h
===================================================================
RCS file: /cvs/src/src/binutils/binemul.h,v
retrieving revision 1.7
diff -u -p -r1.7 binemul.h
--- binutils/binemul.h	18 Jul 2005 14:16:51 -0000	1.7
+++ binutils/binemul.h	26 Apr 2007 06:51:17 -0000
@@ -1,5 +1,5 @@
 /* Binutils emulation layer.
-   Copyright 2002, 2003 Free Software Foundation, Inc.
+   Copyright 2002, 2003, 2007 Free Software Foundation, Inc.
    Written by Tom Rix, Red Hat Inc.
 
    This file is part of GNU Binutils.
@@ -21,6 +21,7 @@
 #ifndef BINEMUL_H
 #define BINEMUL_H
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "bucomm.h"
 
Index: binutils/bucomm.c
===================================================================
RCS file: /cvs/src/src/binutils/bucomm.c,v
retrieving revision 1.29
diff -u -p -r1.29 bucomm.c
--- binutils/bucomm.c	15 Mar 2007 14:17:16 -0000	1.29
+++ binutils/bucomm.c	26 Apr 2007 06:51:17 -0000
@@ -1,6 +1,6 @@
 /* bucomm.c -- Bin Utils COMmon code.
    Copyright 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000, 2001, 2002,
-   2003, 2006
+   2003, 2006, 2007
    Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
@@ -23,15 +23,16 @@
 /* We might put this in a library someday so it could be dynamically
    loaded, but for now it's not necessary.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "libiberty.h"
-#include "bucomm.h"
 #include "filenames.h"
 #include "libbfd.h"
 
 #include <sys/stat.h>
 #include <time.h>		/* ctime, maybe time_t */
 #include <assert.h>
+#include "bucomm.h"
 
 #ifndef HAVE_TIME_T_IN_TIME_H
 #ifndef HAVE_TIME_T_IN_TYPES_H
Index: binutils/bucomm.h
===================================================================
RCS file: /cvs/src/src/binutils/bucomm.h,v
retrieving revision 1.25
diff -u -p -r1.25 bucomm.h
--- binutils/bucomm.h	15 Mar 2007 14:17:16 -0000	1.25
+++ binutils/bucomm.h	26 Apr 2007 06:51:17 -0000
@@ -21,159 +21,6 @@
 #ifndef _BUCOMM_H
 #define _BUCOMM_H
 
-#include "ansidecl.h"
-#include <stdio.h>
-#include <sys/types.h>
-
-#include "bfdver.h"
-#include "config.h"
-
-#include <stdarg.h>
-
-#ifdef USE_BINARY_FOPEN
-#include "fopen-bin.h"
-#else
-#include "fopen-same.h"
-#endif
-
-#include <errno.h>
-#ifndef errno
-extern int errno;
-#endif
-
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
-
-#ifdef HAVE_STRING_H
-#include <string.h>
-#else
-#ifdef HAVE_STRINGS_H
-#include <strings.h>
-#else
-extern char *strchr ();
-extern char *strrchr ();
-#endif
-#endif
-
-#ifdef HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-
-#ifdef HAVE_FCNTL_H
-#include <fcntl.h>
-#else
-#ifdef HAVE_SYS_FILE_H
-#include <sys/file.h>
-#endif
-#endif
-
-#if !HAVE_DECL_STPCPY
-extern char *stpcpy (char *, const char *);
-#endif
-
-#if !HAVE_DECL_STRSTR
-extern char *strstr ();
-#endif
-
-#ifdef HAVE_SBRK
-#if !HAVE_DECL_SBRK
-extern char *sbrk ();
-#endif
-#endif
-
-#if !HAVE_DECL_GETENV
-extern char *getenv ();
-#endif
-
-#if !HAVE_DECL_ENVIRON
-extern char **environ;
-#endif
-
-#if !HAVE_DECL_FPRINTF
-extern int fprintf (FILE *, const char *, ...);
-#endif
-
-#if !HAVE_DECL_SNPRINTF
-extern int snprintf(char *, size_t, const char *, ...);
-#endif
-
-#if !HAVE_DECL_VSNPRINTF
-extern int vsnprintf(char *, size_t, const char *, va_list);
-#endif
-
-#ifndef O_RDONLY
-#define O_RDONLY 0
-#endif
-
-#ifndef O_RDWR
-#define O_RDWR 2
-#endif
-
-#ifndef SEEK_SET
-#define SEEK_SET 0
-#endif
-#ifndef SEEK_CUR
-#define SEEK_CUR 1
-#endif
-#ifndef SEEK_END
-#define SEEK_END 2
-#endif
-
-#if defined(__GNUC__) && !defined(C_ALLOCA)
-# undef alloca
-# define alloca __builtin_alloca
-#else
-# if defined(HAVE_ALLOCA_H) && !defined(C_ALLOCA)
-#  include <alloca.h>
-# else
-#  ifndef alloca /* predefined by HP cc +Olibcalls */
-#   if !defined (__STDC__) && !defined (__hpux)
-char *alloca ();
-#   else
-void *alloca ();
-#   endif /* __STDC__, __hpux */
-#  endif /* alloca */
-# endif /* HAVE_ALLOCA_H */
-#endif
-
-
-#ifdef HAVE_LOCALE_H
-# ifndef ENABLE_NLS
-   /* The Solaris version of locale.h always includes libintl.h.  If we have
-      been configured with --disable-nls then ENABLE_NLS will not be defined
-      and the dummy definitions of bindtextdomain (et al) below will conflict
-      with the defintions in libintl.h.  So we define these values to prevent
-      the bogus inclusion of libintl.h.  */
-#  define _LIBINTL_H
-#  define _LIBGETTEXT_H
-# endif
-# include <locale.h>
-#endif
-
-#ifdef ENABLE_NLS
-# include <libintl.h>
-# define _(String) gettext (String)
-# ifdef gettext_noop
-#  define N_(String) gettext_noop (String)
-# else
-#  define N_(String) (String)
-# endif
-#else
-# define gettext(Msgid) (Msgid)
-# define dgettext(Domainname, Msgid) (Msgid)
-# define dcgettext(Domainname, Msgid, Category) (Msgid)
-# define textdomain(Domainname) while (0) /* nothing */
-# define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
-# define _(String) (String)
-# define N_(String) (String)
-#endif
-
-/* Used by ar.c and objcopy.c.  */
-#define BUFSIZE 8192
-
-/* bucomm.c */
-
 /* Return the filename in a static buffer.  */
 const char *bfd_get_archive_filename (bfd *);
 
Index: binutils/sysdep.h
===================================================================
RCS file: binutils/sysdep.h
diff -N binutils/sysdep.h
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ binutils/sysdep.h	26 Apr 2007 07:23:01 -0000
@@ -0,0 +1,174 @@
+/* sysdep.h -- handle host dependencies for binutils
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+   2001, 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+
+   This file is part of GNU Binutils.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
+
+#ifndef _BIN_SYSDEP_H
+#define _BIN_SYSDEP_H
+
+#include "ansidecl.h"
+#include <stdio.h>
+#include <sys/types.h>
+
+#include "bfdver.h"
+#include "config.h"
+
+#include <stdarg.h>
+
+#ifdef USE_BINARY_FOPEN
+#include "fopen-bin.h"
+#else
+#include "fopen-same.h"
+#endif
+
+#include <errno.h>
+#ifndef errno
+extern int errno;
+#endif
+
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
+#ifdef HAVE_STRING_H
+#include <string.h>
+#else
+#ifdef HAVE_STRINGS_H
+#include <strings.h>
+#else
+extern char *strchr ();
+extern char *strrchr ();
+#endif
+#endif
+
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+
+#ifdef HAVE_FCNTL_H
+#include <fcntl.h>
+#else
+#ifdef HAVE_SYS_FILE_H
+#include <sys/file.h>
+#endif
+#endif
+
+#if !HAVE_DECL_STPCPY
+extern char *stpcpy (char *, const char *);
+#endif
+
+#if !HAVE_DECL_STRSTR
+extern char *strstr ();
+#endif
+
+#ifdef HAVE_SBRK
+#if !HAVE_DECL_SBRK
+extern char *sbrk ();
+#endif
+#endif
+
+#if !HAVE_DECL_GETENV
+extern char *getenv ();
+#endif
+
+#if !HAVE_DECL_ENVIRON
+extern char **environ;
+#endif
+
+#if !HAVE_DECL_FPRINTF
+extern int fprintf (FILE *, const char *, ...);
+#endif
+
+#if !HAVE_DECL_SNPRINTF
+extern int snprintf(char *, size_t, const char *, ...);
+#endif
+
+#if !HAVE_DECL_VSNPRINTF
+extern int vsnprintf(char *, size_t, const char *, va_list);
+#endif
+
+#ifndef O_RDONLY
+#define O_RDONLY 0
+#endif
+
+#ifndef O_RDWR
+#define O_RDWR 2
+#endif
+
+#ifndef SEEK_SET
+#define SEEK_SET 0
+#endif
+#ifndef SEEK_CUR
+#define SEEK_CUR 1
+#endif
+#ifndef SEEK_END
+#define SEEK_END 2
+#endif
+
+#if defined(__GNUC__) && !defined(C_ALLOCA)
+# undef alloca
+# define alloca __builtin_alloca
+#else
+# if defined(HAVE_ALLOCA_H) && !defined(C_ALLOCA)
+#  include <alloca.h>
+# else
+#  ifndef alloca /* predefined by HP cc +Olibcalls */
+#   if !defined (__STDC__) && !defined (__hpux)
+char *alloca ();
+#   else
+void *alloca ();
+#   endif /* __STDC__, __hpux */
+#  endif /* alloca */
+# endif /* HAVE_ALLOCA_H */
+#endif
+
+#ifdef HAVE_LOCALE_H
+# ifndef ENABLE_NLS
+   /* The Solaris version of locale.h always includes libintl.h.  If we have
+      been configured with --disable-nls then ENABLE_NLS will not be defined
+      and the dummy definitions of bindtextdomain (et al) below will conflict
+      with the defintions in libintl.h.  So we define these values to prevent
+      the bogus inclusion of libintl.h.  */
+#  define _LIBINTL_H
+#  define _LIBGETTEXT_H
+# endif
+# include <locale.h>
+#endif
+
+#ifdef ENABLE_NLS
+# include <libintl.h>
+# define _(String) gettext (String)
+# ifdef gettext_noop
+#  define N_(String) gettext_noop (String)
+# else
+#  define N_(String) (String)
+# endif
+#else
+# define gettext(Msgid) (Msgid)
+# define dgettext(Domainname, Msgid) (Msgid)
+# define dcgettext(Domainname, Msgid, Category) (Msgid)
+# define textdomain(Domainname) while (0) /* nothing */
+# define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
+# define _(String) (String)
+# define N_(String) (String)
+#endif
+
+/* Used by ar.c and objcopy.c.  */
+#define BUFSIZE 8192
+
+#endif /* _BIN_SYSDEP_H */
Index: binutils/coffdump.c
===================================================================
RCS file: /cvs/src/src/binutils/coffdump.c,v
retrieving revision 1.16
diff -u -p -r1.16 coffdump.c
--- binutils/coffdump.c	17 Feb 2007 13:33:53 -0000	1.16
+++ binutils/coffdump.c	26 Apr 2007 06:51:17 -0000
@@ -23,11 +23,12 @@
    This module reads a type tree generated by coffgrok and prints
    it out so we can test the grokker.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "libiberty.h"
+#include "bucomm.h"
 
 #include "coffgrok.h"
-#include "bucomm.h"
 #include "getopt.h"
 
 static int atnl;
Index: binutils/coffgrok.c
===================================================================
RCS file: /cvs/src/src/binutils/coffgrok.c,v
retrieving revision 1.13
diff -u -p -r1.13 coffgrok.c
--- binutils/coffgrok.c	8 May 2005 14:17:38 -0000	1.13
+++ binutils/coffgrok.c	26 Apr 2007 06:51:18 -0000
@@ -1,5 +1,5 @@
 /* coffgrok.c
-   Copyright 1994, 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2004
+   Copyright 1994, 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2007
    Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
@@ -26,13 +26,15 @@ Foundation, Inc., 51 Franklin Street - F
 
 */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "libiberty.h"
-#include "bucomm.h"
 
 #include "coff/internal.h"
 #include "../bfd/libcoff.h"
+#include "bucomm.h"
 #include "coffgrok.h"
+
 static int lofile = 1;
 static struct coff_scope *top_scope;
 static struct coff_scope *file_scope;
Index: binutils/cxxfilt.c
===================================================================
RCS file: /cvs/src/src/binutils/cxxfilt.c,v
retrieving revision 1.12
diff -u -p -r1.12 cxxfilt.c
--- binutils/cxxfilt.c	17 Feb 2007 13:33:54 -0000	1.12
+++ binutils/cxxfilt.c	26 Apr 2007 06:51:22 -0000
@@ -22,13 +22,13 @@
    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "config.h"
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "demangle.h"
 #include "getopt.h"
 #include "safe-ctype.h"
+#include "bucomm.h"
 
 static int flags = DMGL_PARAMS | DMGL_ANSI | DMGL_VERBOSE;
 static int strip_underscore = TARGET_PREPENDS_UNDERSCORE;
Index: binutils/debug.c
===================================================================
RCS file: /cvs/src/src/binutils/debug.c,v
retrieving revision 1.14
diff -u -p -r1.14 debug.c
--- binutils/debug.c	8 May 2005 14:17:38 -0000	1.14
+++ binutils/debug.c	26 Apr 2007 06:51:24 -0000
@@ -1,5 +1,5 @@
 /* debug.c -- Handle generic debugging information.
-   Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003
+   Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2007
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
@@ -26,11 +26,9 @@
    this was writing a converter from stabs to HP IEEE-695 debugging
    format.  */
 
-#include <stdio.h>
+#include "sysdep.h"
 #include <assert.h>
-
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "debug.h"
 
Index: binutils/defparse.y
===================================================================
RCS file: /cvs/src/src/binutils/defparse.y,v
retrieving revision 1.8
diff -u -p -r1.8 defparse.y
--- binutils/defparse.y	8 May 2005 14:17:38 -0000	1.8
+++ binutils/defparse.y	26 Apr 2007 06:51:24 -0000
@@ -1,6 +1,6 @@
 %{ /* defparse.y - parser for .def files */
 
-/*  Copyright 1995, 1997, 1998, 1999, 2001, 2004
+/*  Copyright 1995, 1997, 1998, 1999, 2001, 2004, 2007
     Free Software Foundation, Inc.
 
     This file is part of GNU Binutils.
@@ -19,8 +19,9 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
+#include "libiberty.h"
 #include "dlltool.h"
 %}
 
Index: binutils/dlltool.c
===================================================================
RCS file: /cvs/src/src/binutils/dlltool.c,v
retrieving revision 1.75
diff -u -p -r1.75 dlltool.c
--- binutils/dlltool.c	16 Mar 2007 15:13:21 -0000	1.75
+++ binutils/dlltool.c	26 Apr 2007 06:51:26 -0000
@@ -243,12 +243,13 @@
 
 #define PAGE_SIZE 4096
 #define PAGE_MASK (-PAGE_SIZE)
+#include "sysdep.h"
 #include "bfd.h"
 #include "libiberty.h"
-#include "bucomm.h"
 #include "getopt.h"
 #include "demangle.h"
 #include "dyn-string.h"
+#include "bucomm.h"
 #include "dlltool.h"
 #include "safe-ctype.h"
 
Index: binutils/dllwrap.c
===================================================================
RCS file: /cvs/src/src/binutils/dllwrap.c,v
retrieving revision 1.21
diff -u -p -r1.21 dllwrap.c
--- binutils/dllwrap.c	17 Feb 2007 13:33:54 -0000	1.21
+++ binutils/dllwrap.c	26 Apr 2007 06:51:26 -0000
@@ -27,19 +27,15 @@
 #endif
 #endif
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
+#include "sysdep.h"
 #include "bfd.h"
 #include "libiberty.h"
-#include "bucomm.h"
 #include "getopt.h"
 #include "dyn-string.h"
+#include "bucomm.h"
 
 #include <time.h>
 #include <sys/stat.h>
-#include <stdarg.h>
 
 #ifdef HAVE_SYS_WAIT_H
 #include <sys/wait.h>
Index: binutils/dwarf.c
===================================================================
RCS file: /cvs/src/src/binutils/dwarf.c,v
retrieving revision 1.12
diff -u -p -r1.12 dwarf.c
--- binutils/dwarf.c	9 Apr 2007 14:36:59 -0000	1.12
+++ binutils/dwarf.c	26 Apr 2007 06:51:28 -0000
@@ -19,12 +19,12 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include <stdio.h>
-
-#include "dwarf.h"
-
-#include "bucomm.h"
+#include "sysdep.h"
 #include "libiberty.h"
+#include "bfd.h"
+#include "bucomm.h"
+#include "elf/dwarf2.h"
+#include "dwarf.h"
 
 static int have_frame_base;
 static int need_base_address;
Index: binutils/dwarf.h
===================================================================
RCS file: /cvs/src/src/binutils/dwarf.h,v
retrieving revision 1.1
diff -u -p -r1.1 dwarf.h
--- binutils/dwarf.h	30 Sep 2005 14:55:05 -0000	1.1
+++ binutils/dwarf.h	26 Apr 2007 06:51:28 -0000
@@ -1,5 +1,5 @@
 /* dwwrf.h - DWARF support header file
-   Copyright 2005
+   Copyright 2005, 2007
    Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
@@ -18,9 +18,6 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
-#include "elf/dwarf2.h"
-
 #if __STDC_VERSION__ >= 199901L || (defined(__GNUC__) && __GNUC__ >= 2)
 /* We can't use any bfd types here since readelf may define BFD64 and
    objdump may not.  */
Index: binutils/filemode.c
===================================================================
RCS file: /cvs/src/src/binutils/filemode.c,v
retrieving revision 1.9
diff -u -p -r1.9 filemode.c
--- binutils/filemode.c	8 May 2005 14:17:38 -0000	1.9
+++ binutils/filemode.c	26 Apr 2007 06:51:28 -0000
@@ -1,6 +1,6 @@
 /* filemode.c -- make a string describing file modes
-   Copyright 1985, 1990, 1991, 1994, 1995, 1997, 1999, 2002, 2003, 2005
-   Free Software Foundation, Inc.
+   Copyright 1985, 1990, 1991, 1994, 1995, 1997, 1999, 2002, 2003, 2005,
+   2007 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -17,6 +17,7 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "bucomm.h"
 
Index: binutils/ieee.c
===================================================================
RCS file: /cvs/src/src/binutils/ieee.c,v
retrieving revision 1.18
diff -u -p -r1.18 ieee.c
--- binutils/ieee.c	16 Mar 2006 12:20:16 -0000	1.18
+++ binutils/ieee.c	26 Apr 2007 06:51:31 -0000
@@ -1,5 +1,5 @@
 /* ieee.c -- Read and write IEEE-695 debugging information.
-   Copyright 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2006
+   Copyright 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2006, 2007
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
@@ -22,12 +22,10 @@
 
 /* This file reads and writes IEEE-695 debugging information.  */
 
-#include <stdio.h>
+#include "sysdep.h"
 #include <assert.h>
-
 #include "bfd.h"
 #include "ieee.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "debug.h"
 #include "budbg.h"
Index: binutils/nlmconv.c
===================================================================
RCS file: /cvs/src/src/binutils/nlmconv.c,v
retrieving revision 1.30
diff -u -p -r1.30 nlmconv.c
--- binutils/nlmconv.c	17 Feb 2007 13:33:54 -0000	1.30
+++ binutils/nlmconv.c	26 Apr 2007 06:51:34 -0000
@@ -32,9 +32,9 @@
 #endif
 #endif
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "libiberty.h"
-#include "bucomm.h"
 #include "safe-ctype.h"
 
 #include "ansidecl.h"
@@ -53,6 +53,8 @@
 #include "coff/ecoff.h"
 #endif
 
+#include "bucomm.h"
+
 /* If strerror is just a macro, we want to use the one from libiberty
    since it will handle undefined values.  */
 #undef strerror
Index: binutils/nlmheader.y
===================================================================
RCS file: /cvs/src/src/binutils/nlmheader.y,v
retrieving revision 1.10
diff -u -p -r1.10 nlmheader.y
--- binutils/nlmheader.y	8 May 2005 14:17:38 -0000	1.10
+++ binutils/nlmheader.y	26 Apr 2007 06:51:34 -0000
@@ -1,5 +1,5 @@
 %{/* nlmheader.y - parse NLM header specification keywords.
-     Copyright 1993, 1994, 1995, 1997, 1998, 2001, 2002, 2003
+     Copyright 1993, 1994, 1995, 1997, 1998, 2001, 2002, 2003, 2007
      Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
@@ -27,13 +27,12 @@ Foundation, Inc., 51 Franklin Street - F
    This implementation is based on the description in the NetWare Tool
    Maker Specification manual, edition 1.0.  */
 
-#include "ansidecl.h"
-#include <stdio.h>
+#include "sysdep.h"
 #include "safe-ctype.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "nlm/common.h"
 #include "nlm/internal.h"
+#include "bucomm.h"
 #include "nlmconv.h"
 
 /* Information is stored in the structures pointed to by these
Index: binutils/nm.c
===================================================================
RCS file: /cvs/src/src/binutils/nm.c,v
retrieving revision 1.52
diff -u -p -r1.52 nm.c
--- binutils/nm.c	19 Apr 2007 10:43:47 -0000	1.52
+++ binutils/nm.c	26 Apr 2007 06:51:34 -0000
@@ -20,9 +20,9 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "progress.h"
-#include "bucomm.h"
 #include "getopt.h"
 #include "aout/stab_gnu.h"
 #include "aout/ranlib.h"
@@ -30,6 +30,7 @@
 #include "libiberty.h"
 #include "elf-bfd.h"
 #include "elf/common.h"
+#include "bucomm.h"
 
 /* When sorting by size, we use this structure to hold the size and a
    pointer to the minisymbol.  */
Index: binutils/objcopy.c
===================================================================
RCS file: /cvs/src/src/binutils/objcopy.c,v
retrieving revision 1.109
diff -u -p -r1.109 objcopy.c
--- binutils/objcopy.c	24 Apr 2007 10:56:58 -0000	1.109
+++ binutils/objcopy.c	26 Apr 2007 06:51:35 -0000
@@ -20,11 +20,12 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "progress.h"
-#include "bucomm.h"
 #include "getopt.h"
 #include "libiberty.h"
+#include "bucomm.h"
 #include "budbg.h"
 #include "filenames.h"
 #include "fnmatch.h"
Index: binutils/objdump.c
===================================================================
RCS file: /cvs/src/src/binutils/objdump.c,v
retrieving revision 1.124
diff -u -p -r1.124 objdump.c
--- binutils/objdump.c	19 Apr 2007 10:43:47 -0000	1.124
+++ binutils/objdump.c	26 Apr 2007 06:51:37 -0000
@@ -48,6 +48,7 @@
    disassembling is done by the libopcodes library, via a function pointer
    supplied by the disassembler() function.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "progress.h"
 #include "bucomm.h"
Index: binutils/prdbg.c
===================================================================
RCS file: /cvs/src/src/binutils/prdbg.c,v
retrieving revision 1.16
diff -u -p -r1.16 prdbg.c
--- binutils/prdbg.c	19 Apr 2007 10:43:47 -0000	1.16
+++ binutils/prdbg.c	26 Apr 2007 06:51:38 -0000
@@ -24,11 +24,9 @@
 /* This file prints out the generic debugging information, by
    supplying a set of routines to debug_write.  */
 
-#include <stdio.h>
+#include "sysdep.h"
 #include <assert.h>
-
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "demangle.h"
 #include "debug.h"
Index: binutils/rclex.l
===================================================================
RCS file: /cvs/src/src/binutils/rclex.l,v
retrieving revision 1.15
diff -u -p -r1.15 rclex.l
--- binutils/rclex.l	20 Apr 2007 13:52:58 -0000	1.15
+++ binutils/rclex.l	26 Apr 2007 06:51:38 -0000
@@ -1,5 +1,5 @@
 %{ /* rclex.l -- lexer for Windows rc files parser  */
-/* Copyright 1997, 1998, 1999, 2001, 2002, 2003, 2005
+/* Copyright 1997, 1998, 1999, 2001, 2002, 2003, 2005, 2007
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
@@ -24,8 +24,8 @@
    Windows rc file parser.  It basically just recognized a bunch of
    keywords.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
 #include "windres.h"
Index: binutils/rcparse.y
===================================================================
RCS file: /cvs/src/src/binutils/rcparse.y,v
retrieving revision 1.22
diff -u -p -r1.22 rcparse.y
--- binutils/rcparse.y	8 May 2005 14:17:39 -0000	1.22
+++ binutils/rcparse.y	26 Apr 2007 06:51:39 -0000
@@ -1,5 +1,5 @@
 %{ /* rcparse.y -- parser for Windows rc files
-   Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005
+   Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2007
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
@@ -23,8 +23,8 @@
 /* This is a parser for Windows rc files.  It is based on the parser
    by Gunther Ebert <gunther.ebert@ixos-leipzig.de>.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "windres.h"
 #include "safe-ctype.h"
Index: binutils/rdcoff.c
===================================================================
RCS file: /cvs/src/src/binutils/rdcoff.c,v
retrieving revision 1.12
diff -u -p -r1.12 rdcoff.c
--- binutils/rdcoff.c	8 May 2005 14:17:39 -0000	1.12
+++ binutils/rdcoff.c	26 Apr 2007 06:51:39 -0000
@@ -1,5 +1,6 @@
 /* stabs.c -- Parse COFF debugging information
-   Copyright 1996, 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
+   Copyright 1996, 1999, 2000, 2002, 2003, 2007
+   Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
    This file is part of GNU Binutils.
@@ -21,10 +22,11 @@
 
 /* This file contains code which parses COFF debugging information.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "coff/internal.h"
-#include "bucomm.h"
 #include "libiberty.h"
+#include "bucomm.h"
 #include "debug.h"
 #include "budbg.h"
 
Index: binutils/rddbg.c
===================================================================
RCS file: /cvs/src/src/binutils/rddbg.c,v
retrieving revision 1.11
diff -u -p -r1.11 rddbg.c
--- binutils/rddbg.c	22 Dec 2005 18:11:09 -0000	1.11
+++ binutils/rddbg.c	26 Apr 2007 06:51:39 -0000
@@ -1,5 +1,5 @@
 /* rddbg.c -- Read debugging information into a generic form.
-   Copyright 1995, 1996, 1997, 2000, 2002, 2003, 2005
+   Copyright 1995, 1996, 1997, 2000, 2002, 2003, 2005, 2007
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
@@ -24,9 +24,10 @@
    file knows how to dig the debugging information out of an object
    file.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
+#include "bucomm.h"
 #include "debug.h"
 #include "budbg.h"
 
Index: binutils/readelf.c
===================================================================
RCS file: /cvs/src/src/binutils/readelf.c,v
retrieving revision 1.363
diff -u -p -r1.363 readelf.c
--- binutils/readelf.c	23 Mar 2007 21:26:23 -0000	1.363
+++ binutils/readelf.c	26 Apr 2007 06:51:44 -0000
@@ -41,10 +41,9 @@
   ELF file than is provided by objdump.  In particular it can display DWARF
   debugging information which (at the moment) objdump cannot.  */
 
+#include "sysdep.h"
 #include <assert.h>
-#include <sys/types.h>
 #include <sys/stat.h>
-#include <stdio.h>
 #include <time.h>
 
 /* for PATH_MAX */
@@ -74,6 +73,8 @@
 #define BFD64
 #endif
 
+#include "bfd.h"
+#include "bucomm.h"
 #include "dwarf.h"
 
 #include "elf/common.h"
@@ -154,7 +155,6 @@
 
 #include "aout/ar.h"
 
-#include "bucomm.h"
 #include "getopt.h"
 #include "libiberty.h"
 
Index: binutils/rename.c
===================================================================
RCS file: /cvs/src/src/binutils/rename.c,v
retrieving revision 1.10
diff -u -p -r1.10 rename.c
--- binutils/rename.c	16 Jun 2005 09:18:19 -0000	1.10
+++ binutils/rename.c	26 Apr 2007 06:51:44 -0000
@@ -1,5 +1,5 @@
 /* rename.c -- rename a file, preserving symlinks.
-   Copyright 1999, 2002, 2003 Free Software Foundation, Inc.
+   Copyright 1999, 2002, 2003, 2007 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
 
@@ -18,6 +18,7 @@
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "bucomm.h"
 
Index: binutils/resbin.c
===================================================================
RCS file: /cvs/src/src/binutils/resbin.c,v
retrieving revision 1.10
diff -u -p -r1.10 resbin.c
--- binutils/resbin.c	29 Mar 2006 00:24:28 -0000	1.10
+++ binutils/resbin.c	26 Apr 2007 06:51:44 -0000
@@ -1,5 +1,5 @@
 /* resbin.c -- manipulate the Windows binary resource format.
-   Copyright 1997, 1998, 1999, 2002, 2003
+   Copyright 1997, 1998, 1999, 2002, 2003, 2007
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
@@ -24,9 +24,10 @@
    format and the internal structures that we want to use.  The same
    binary resource format is used in both res and COFF files.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
+#include "bucomm.h"
 #include "windres.h"
 
 /* Macros to swap in values.  */
Index: binutils/rescoff.c
===================================================================
RCS file: /cvs/src/src/binutils/rescoff.c,v
retrieving revision 1.7
diff -u -p -r1.7 rescoff.c
--- binutils/rescoff.c	8 May 2005 14:17:39 -0000	1.7
+++ binutils/rescoff.c	26 Apr 2007 06:51:45 -0000
@@ -1,5 +1,5 @@
 /* rescoff.c -- read and write resources in Windows COFF files.
-   Copyright 1997, 1998, 1999, 2000, 2003
+   Copyright 1997, 1998, 1999, 2000, 2003, 2007
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
@@ -23,9 +23,10 @@
 /* This file contains function that read and write Windows resources
    in COFF files.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
+#include "bucomm.h"
 #include "windres.h"
 
 #include <assert.h>
Index: binutils/resrc.c
===================================================================
RCS file: /cvs/src/src/binutils/resrc.c,v
retrieving revision 1.27
diff -u -p -r1.27 resrc.c
--- binutils/resrc.c	8 May 2005 14:17:39 -0000	1.27
+++ binutils/resrc.c	26 Apr 2007 06:51:46 -0000
@@ -1,5 +1,5 @@
 /* resrc.c -- read and write Windows rc files.
-   Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005
+   Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2007
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
@@ -23,18 +23,15 @@
 /* This file contains functions that read and write Windows rc files.
    These are text files that represent resources.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
+#include "bucomm.h"
 #include "windres.h"
 
 #include <assert.h>
-#include <errno.h>
 #include <sys/stat.h>
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
 
 #ifdef HAVE_SYS_WAIT_H
 #include <sys/wait.h>
Index: binutils/resres.c
===================================================================
RCS file: /cvs/src/src/binutils/resres.c,v
retrieving revision 1.7
diff -u -p -r1.7 resres.c
--- binutils/resres.c	16 Jun 2005 09:18:19 -0000	1.7
+++ binutils/resres.c	26 Apr 2007 06:51:46 -0000
@@ -1,5 +1,5 @@
 /* resres.c: read_res_file and write_res_file implementation for windres.
-   Copyright 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2001, 2002, 2007 Free Software Foundation, Inc.
    Written by Anders Norlander <anorland@hem2.passagen.se>.
 
    This file is part of GNU Binutils.
@@ -23,9 +23,10 @@
    It assumes that it can use fread and fwrite to read and write
    integers.  It does no swapping.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
+#include "bucomm.h"
 #include "windres.h"
 
 #include <assert.h>
Index: binutils/size.c
===================================================================
RCS file: /cvs/src/src/binutils/size.c,v
retrieving revision 1.27
diff -u -p -r1.27 size.c
--- binutils/size.c	17 Feb 2007 13:33:54 -0000	1.27
+++ binutils/size.c	26 Apr 2007 06:51:46 -0000
@@ -28,10 +28,11 @@
    If you write shell scripts which manipulate this info then you may be
    out of luck; there's no --compatibility or --pedantic option.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "getopt.h"
+#include "bucomm.h"
 
 #ifndef BSD_DEFAULT
 #define BSD_DEFAULT 1
Index: binutils/srconv.c
===================================================================
RCS file: /cvs/src/src/binutils/srconv.c,v
retrieving revision 1.20
diff -u -p -r1.20 srconv.c
--- binutils/srconv.c	24 Apr 2007 12:08:39 -0000	1.20
+++ binutils/srconv.c	26 Apr 2007 06:51:47 -0000
@@ -26,6 +26,7 @@
 
    All debugging information is preserved */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "bucomm.h"
 #include "sysroff.h"
Index: binutils/stabs.c
===================================================================
RCS file: /cvs/src/src/binutils/stabs.c,v
retrieving revision 1.24
diff -u -p -r1.24 stabs.c
--- binutils/stabs.c	16 Sep 2006 18:12:17 -0000	1.24
+++ binutils/stabs.c	26 Apr 2007 06:51:50 -0000
@@ -1,6 +1,6 @@
 /* stabs.c -- Parse stabs debugging information
-   Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006
-   Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
+   2006, 2007 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
    This file is part of GNU Binutils.
@@ -25,10 +25,8 @@
    code.  The job it does is somewhat different, because it is not
    trying to identify the correct address for anything.  */
 
-#include <stdio.h>
-
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
 #include "demangle.h"
Index: binutils/strings.c
===================================================================
RCS file: /cvs/src/src/binutils/strings.c,v
retrieving revision 1.34
diff -u -p -r1.34 strings.c
--- binutils/strings.c	17 Feb 2007 13:33:54 -0000	1.34
+++ binutils/strings.c	26 Apr 2007 06:51:50 -0000
@@ -58,17 +58,13 @@
    Written by Richard Stallman <rms@gnu.ai.mit.edu>
    and David MacKenzie <djm@gnu.ai.mit.edu>.  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+#include "sysdep.h"
 #include "bfd.h"
-#include <stdio.h>
 #include "getopt.h"
-#include <errno.h>
-#include "bucomm.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
 #include <sys/stat.h>
+#include "bucomm.h"
 
 /* Some platforms need to put stdin into binary mode, to read
     binary files.  */
Index: binutils/sysdump.c
===================================================================
RCS file: /cvs/src/src/binutils/sysdump.c,v
retrieving revision 1.17
diff -u -p -r1.17 sysdump.c
--- binutils/sysdump.c	17 Feb 2007 13:33:54 -0000	1.17
+++ binutils/sysdump.c	26 Apr 2007 06:51:50 -0000
@@ -25,13 +25,12 @@
  This program reads a SYSROFF object file and prints it in an
  almost human readable form to stdout.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "safe-ctype.h"
-
-#include <stdio.h>
 #include "libiberty.h"
 #include "getopt.h"
+#include "bucomm.h"
 #include "sysroff.h"
 
 static int dump = 1;
Index: binutils/version.c
===================================================================
RCS file: /cvs/src/src/binutils/version.c,v
retrieving revision 1.14
diff -u -p -r1.14 version.c
--- binutils/version.c	15 Mar 2007 14:17:16 -0000	1.14
+++ binutils/version.c	26 Apr 2007 06:51:50 -0000
@@ -18,7 +18,7 @@
    along with this program; if not, write to the Free Software
    Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include <stdio.h>
+#include "sysdep.h"
 #include "bfd.h"
 #include "bucomm.h"
 
Index: binutils/windres.c
===================================================================
RCS file: /cvs/src/src/binutils/windres.c,v
retrieving revision 1.28
diff -u -p -r1.28 windres.c
--- binutils/windres.c	17 Feb 2007 13:33:54 -0000	1.28
+++ binutils/windres.c	26 Apr 2007 06:51:51 -0000
@@ -34,18 +34,15 @@
 
    * The res2coff program, written by Pedro A. Aranda <paag@tid.es>.  */
 
-#include "config.h"
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
+#include "sysdep.h"
 #include <assert.h>
 #include <time.h>
 #include "bfd.h"
 #include "getopt.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
 #include "obstack.h"
+#include "bucomm.h"
 #include "windres.h"
 
 /* Used by resrc.c at least.  */
Index: binutils/winduni.c
===================================================================
RCS file: /cvs/src/src/binutils/winduni.c,v
retrieving revision 1.5
diff -u -p -r1.5 winduni.c
--- binutils/winduni.c	8 May 2005 14:17:39 -0000	1.5
+++ binutils/winduni.c	26 Apr 2007 06:51:51 -0000
@@ -1,5 +1,6 @@
 /* winduni.c -- unicode support for the windres program.
-   Copyright 1997, 1998, 2000, 2001, 2003 Free Software Foundation, Inc.
+   Copyright 1997, 1998, 2000, 2001, 2003, 2007
+   Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
    This file is part of GNU Binutils.
@@ -27,8 +28,8 @@
    hosts, but that seems better than not really supporting unicode at
    all.  */
 
+#include "sysdep.h"
 #include "bfd.h"
-#include "bucomm.h"
 #include "winduni.h"
 #include "safe-ctype.h"
 
Index: binutils/wrstabs.c
===================================================================
RCS file: /cvs/src/src/binutils/wrstabs.c,v
retrieving revision 1.14
diff -u -p -r1.14 wrstabs.c
--- binutils/wrstabs.c	15 Aug 2006 12:01:43 -0000	1.14
+++ binutils/wrstabs.c	26 Apr 2007 06:51:51 -0000
@@ -1,5 +1,5 @@
 /* wrstabs.c -- Output stabs debugging information
-   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006
+   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006, 2007
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
@@ -23,13 +23,12 @@
 /* This file contains code which writes out stabs debugging
    information.  */
 
-#include <stdio.h>
+#include "sysdep.h"
 #include <assert.h>
-
 #include "bfd.h"
-#include "bucomm.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
+#include "bucomm.h"
 #include "debug.h"
 #include "budbg.h"
 #include "aout/aout64.h"
Index: ld/deffilep.y
===================================================================
RCS file: /cvs/src/src/ld/deffilep.y,v
retrieving revision 1.22
diff -u -p -r1.22 deffilep.y
--- ld/deffilep.y	1 Apr 2006 04:51:23 -0000	1.22
+++ ld/deffilep.y	26 Apr 2007 06:52:24 -0000
@@ -1,6 +1,6 @@
 %{ /* deffilep.y - parser for .def files */
 
-/*   Copyright 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005
+/*   Copyright 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2007
      Free Software Foundation, Inc.
 
      This file is part of GNU Binutils.
@@ -19,11 +19,10 @@
      along with this program; if not, write to the Free Software
      Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include <stdio.h>
+#include "sysdep.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
 #include "bfd.h"
-#include "sysdep.h"
 #include "ld.h"
 #include "ldmisc.h"
 #include "deffile.h"
Index: ld/ldcref.c
===================================================================
RCS file: /cvs/src/src/ld/ldcref.c,v
retrieving revision 1.17
diff -u -p -r1.17 ldcref.c
--- ld/ldcref.c	19 Apr 2007 10:45:59 -0000	1.17
+++ ld/ldcref.c	26 Apr 2007 06:52:24 -0000
@@ -23,8 +23,8 @@ Foundation, Inc., 51 Franklin Street - F
    The table is used to generate cross reference reports.  It is also
    used to implement the NOCROSSREFS command in the linker script.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libiberty.h"
 #include "demangle.h"
Index: ld/ldctor.c
===================================================================
RCS file: /cvs/src/src/ld/ldctor.c,v
retrieving revision 1.11
diff -u -p -r1.11 ldctor.c
--- ld/ldctor.c	16 Sep 2006 18:12:14 -0000	1.11
+++ ld/ldctor.c	26 Apr 2007 06:52:25 -0000
@@ -1,6 +1,6 @@
 /* ldctor.c -- constructor support routines
    Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
-   2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+   2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
    By Steve Chamberlain <sac@cygnus.com>
 
 This file is part of GLD, the Gnu Linker.
@@ -20,8 +20,8 @@ along with GLD; see the file COPYING.  I
 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "safe-ctype.h"
 
Index: ld/ldemul.c
===================================================================
RCS file: /cvs/src/src/ld/ldemul.c,v
retrieving revision 1.24
diff -u -p -r1.24 ldemul.c
--- ld/ldemul.c	17 Nov 2005 00:10:05 -0000	1.24
+++ ld/ldemul.c	26 Apr 2007 06:52:25 -0000
@@ -1,6 +1,6 @@
 /* ldemul.c -- clearing house for ld emulation states
    Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
-   2001, 2002, 2003, 2005
+   2001, 2002, 2003, 2005, 2007
    Free Software Foundation, Inc.
 
 This file is part of GLD, the Gnu Linker.
@@ -20,9 +20,8 @@ along with GLD; see the file COPYING.  I
 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
 02110-1301, USA.  */
 
-#include "config.h"
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "getopt.h"
 #include "bfdlink.h"
 
Index: ld/ldexp.c
===================================================================
RCS file: /cvs/src/src/ld/ldexp.c,v
retrieving revision 1.66
diff -u -p -r1.66 ldexp.c
--- ld/ldexp.c	2 Apr 2007 16:32:03 -0000	1.66
+++ ld/ldexp.c	26 Apr 2007 06:52:25 -0000
@@ -28,8 +28,8 @@
    which contains a value, a section to which it is relative and a
    valid bit.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 
 #include "ld.h"
Index: ld/ldfile.c
===================================================================
RCS file: /cvs/src/src/ld/ldfile.c,v
retrieving revision 1.40
diff -u -p -r1.40 ldfile.c
--- ld/ldfile.c	12 May 2005 07:32:02 -0000	1.40
+++ ld/ldfile.c	26 Apr 2007 06:52:25 -0000
@@ -1,6 +1,6 @@
 /* Linker file opening and searching.
    Copyright 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2002,
-   2003, 2004, 2005 Free Software Foundation, Inc.
+   2003, 2004, 2005, 2007 Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.
 
@@ -21,8 +21,8 @@
 
 /* ldfile.c:  look after all the file stuff.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "safe-ctype.h"
 #include "ld.h"
Index: ld/ldgram.y
===================================================================
RCS file: /cvs/src/src/ld/ldgram.y,v
retrieving revision 1.52
diff -u -p -r1.52 ldgram.y
--- ld/ldgram.y	24 Jan 2007 16:08:53 -0000	1.52
+++ ld/ldgram.y	26 Apr 2007 06:52:26 -0000
@@ -1,6 +1,6 @@
 /* A YACC grammar to parse a superset of the AT&T linker scripting language.
    Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
-   2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+   2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support (steve@cygnus.com).
 
    This file is part of GNU ld.
@@ -26,8 +26,8 @@
 
 #define DONTDECLARE_MALLOC
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "ld.h"
 #include "ldexp.h"
Index: ld/ldlang.c
===================================================================
RCS file: /cvs/src/src/ld/ldlang.c,v
retrieving revision 1.259
diff -u -p -r1.259 ldlang.c
--- ld/ldlang.c	19 Apr 2007 10:45:59 -0000	1.259
+++ ld/ldlang.c	26 Apr 2007 06:52:30 -0000
@@ -20,8 +20,8 @@
    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
 #include "obstack.h"
Index: ld/ldlex.l
===================================================================
RCS file: /cvs/src/src/ld/ldlex.l,v
retrieving revision 1.35
diff -u -p -r1.35 ldlex.l
--- ld/ldlex.l	7 Sep 2006 17:16:34 -0000	1.35
+++ ld/ldlex.l	26 Apr 2007 06:52:30 -0000
@@ -1,7 +1,8 @@
 %{
 
 /* Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-   2000, 2001, 2002, 2003, 2004, 2005  Free Software Foundation, Inc.
+   2000, 2001, 2002, 2003, 2004, 2005, 2007
+   Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.
 
@@ -25,11 +26,8 @@ This was written by steve chamberlain
                     sac@cygnus.com
 */
 
-
-#include <stdio.h>
-
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "safe-ctype.h"
 #include "bfdlink.h"
 #include "ld.h"
Index: ld/ldmain.c
===================================================================
RCS file: /cvs/src/src/ld/ldmain.c,v
retrieving revision 1.119
diff -u -p -r1.119 ldmain.c
--- ld/ldmain.c	28 Mar 2007 14:42:27 -0000	1.119
+++ ld/ldmain.c	26 Apr 2007 06:52:31 -0000
@@ -1,6 +1,6 @@
 /* Main program of GNU linker.
    Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
-   2002, 2003, 2004, 2005, 2006
+   2002, 2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
 
@@ -21,9 +21,8 @@
    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
-#include <stdio.h>
+#include "bfd.h"
 #include "safe-ctype.h"
 #include "libiberty.h"
 #include "progress.h"
Index: ld/ldmisc.c
===================================================================
RCS file: /cvs/src/src/ld/ldmisc.c,v
retrieving revision 1.31
diff -u -p -r1.31 ldmisc.c
--- ld/ldmisc.c	19 Apr 2007 10:55:25 -0000	1.31
+++ ld/ldmisc.c	26 Apr 2007 06:52:31 -0000
@@ -21,9 +21,9 @@
    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "bfd.h"
 #include "bfdlink.h"
-#include "sysdep.h"
 #include "libiberty.h"
 #include "demangle.h"
 #include <stdarg.h>
Index: ld/ldver.c
===================================================================
RCS file: /cvs/src/src/ld/ldver.c,v
retrieving revision 1.12
diff -u -p -r1.12 ldver.c
--- ld/ldver.c	1 Mar 2007 15:48:36 -0000	1.12
+++ ld/ldver.c	26 Apr 2007 06:52:31 -0000
@@ -18,10 +18,9 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include <stdio.h>
+#include "sysdep.h"
 #include "bfd.h"
 #include "bfdver.h"
-#include "sysdep.h"
 
 #include "ld.h"
 #include "ldver.h"
Index: ld/ldwrite.c
===================================================================
RCS file: /cvs/src/src/ld/ldwrite.c,v
retrieving revision 1.24
diff -u -p -r1.24 ldwrite.c
--- ld/ldwrite.c	16 Sep 2006 18:12:16 -0000	1.24
+++ ld/ldwrite.c	26 Apr 2007 06:52:32 -0000
@@ -1,6 +1,6 @@
 /* ldwrite.c -- write out the linked file
    Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2002,
-   2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+   2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain sac@cygnus.com
 
 This file is part of GLD, the Gnu Linker.
@@ -19,8 +19,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
Index: ld/lexsup.c
===================================================================
RCS file: /cvs/src/src/ld/lexsup.c,v
retrieving revision 1.98
diff -u -p -r1.98 lexsup.c
--- ld/lexsup.c	28 Mar 2007 14:42:27 -0000	1.98
+++ ld/lexsup.c	26 Apr 2007 06:52:33 -0000
@@ -20,10 +20,9 @@
    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "config.h"
+#include "sysdep.h"
 #include "bfd.h"
 #include "bfdver.h"
-#include "sysdep.h"
 #include "libiberty.h"
 #include <stdio.h>
 #include <string.h>
Index: ld/mri.c
===================================================================
RCS file: /cvs/src/src/ld/mri.c,v
retrieving revision 1.20
diff -u -p -r1.20 mri.c
--- ld/mri.c	12 May 2005 07:32:03 -0000	1.20
+++ ld/mri.c	26 Apr 2007 06:52:33 -0000
@@ -1,6 +1,6 @@
 /* mri.c -- handle MRI style linker scripts
    Copyright 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001,
-   2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+   2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
 
 This file is part of GLD, the Gnu Linker.
 
@@ -24,8 +24,8 @@ Software Foundation, 51 Franklin Street 
 
    Contributed by Steve Chamberlain <sac@cygnus.com>.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "ld.h"
 #include "ldexp.h"
 #include "ldlang.h"
Index: ld/pe-dll.c
===================================================================
RCS file: /cvs/src/src/ld/pe-dll.c,v
retrieving revision 1.96
diff -u -p -r1.96 pe-dll.c
--- ld/pe-dll.c	16 Mar 2007 15:13:21 -0000	1.96
+++ ld/pe-dll.c	26 Apr 2007 06:52:34 -0000
@@ -20,8 +20,8 @@
    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
    02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
Index: ld/pe-dll.h
===================================================================
RCS file: /cvs/src/src/ld/pe-dll.h,v
retrieving revision 1.14
diff -u -p -r1.14 pe-dll.h
--- ld/pe-dll.h	18 Dec 2006 22:38:53 -0000	1.14
+++ ld/pe-dll.h	26 Apr 2007 06:52:34 -0000
@@ -1,5 +1,6 @@
 /* pe-dll.h: Header file for routines used to build Windows DLLs.
-   Copyright 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2001, 2002, 2003, 2007
+   Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.
 
@@ -21,8 +22,8 @@
 #ifndef PE_DLL_H
 #define PE_DLL_H
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "deffile.h"
 
Index: ld/pep-dll.h
===================================================================
RCS file: /cvs/src/src/ld/pep-dll.h,v
retrieving revision 1.2
diff -u -p -r1.2 pep-dll.h
--- ld/pep-dll.h	8 Jan 2007 16:16:37 -0000	1.2
+++ ld/pep-dll.h	26 Apr 2007 06:52:34 -0000
@@ -1,5 +1,5 @@
 /* pep-dll.h: Header file for routines used to build Windows DLLs.
-   Copyright 2006 Free Software Foundation, Inc.
+   Copyright 2006, 2007 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -22,8 +22,8 @@
 #ifndef PEP_DLL_H
 #define PEP_DLL_H
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "deffile.h"
 
Index: ld/emultempl/aix.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/aix.em,v
retrieving revision 1.43
diff -u -p -r1.43 aix.em
--- ld/emultempl/aix.em	7 Mar 2007 07:52:09 -0000	1.43
+++ ld/emultempl/aix.em	26 Apr 2007 06:52:35 -0000
@@ -10,7 +10,7 @@ cat >e${EMULATION_NAME}.c <<EOF
 
 /* AIX emulation code for ${EMULATION_NAME}
    Copyright 1991, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-   2003, 2004, 2005, 2006
+   2003, 2004, 2005, 2006, 2007
    Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
    AIX support by Ian Lance Taylor <ian@cygnus.com>
@@ -34,8 +34,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define TARGET_IS_${EMULATION_NAME}
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
 #include "getopt.h"
Index: ld/emultempl/armcoff.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/armcoff.em,v
retrieving revision 1.24
diff -u -p -r1.24 armcoff.em
--- ld/emultempl/armcoff.em	17 Oct 2006 13:41:48 -0000	1.24
+++ ld/emultempl/armcoff.em	26 Apr 2007 06:52:36 -0000
@@ -5,7 +5,7 @@ cat >e${EMULATION_NAME}.c <<EOF
 
 /* emulate the original gld for the given ${EMULATION_NAME}
    Copyright 1991, 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
-   2004, 2005 Free Software Foundation, Inc.
+   2004, 2005, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
 
 This file is part of GLD, the Gnu Linker.
@@ -26,8 +26,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define TARGET_IS_${EMULATION_NAME}
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "getopt.h"
 
Index: ld/emultempl/beos.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/beos.em,v
retrieving revision 1.35
diff -u -p -r1.35 beos.em
--- ld/emultempl/beos.em	16 Sep 2006 18:12:16 -0000	1.35
+++ ld/emultempl/beos.em	26 Apr 2007 06:52:36 -0000
@@ -8,7 +8,7 @@ fi
 cat >e${EMULATION_NAME}.c <<EOF
 /* This file is part of GLD, the Gnu Linker.
    Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005, 2006 Free Software Foundation, Inc.
+   2005, 2006, 2007 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -31,8 +31,8 @@ Foundation, Inc., 51 Franklin Street - F
    only determine if the subsystem is console or windows in order to select
    the correct entry point by default. */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "getopt.h"
 #include "libiberty.h"
Index: ld/emultempl/elf32.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/elf32.em,v
retrieving revision 1.177
diff -u -p -r1.177 elf32.em
--- ld/emultempl/elf32.em	28 Mar 2007 14:42:28 -0000	1.177
+++ ld/emultempl/elf32.em	26 Apr 2007 06:52:37 -0000
@@ -13,7 +13,7 @@ cat >e${EMULATION_NAME}.c <<EOF
 
 /* ${ELFSIZE} bit ELF emulation code for ${EMULATION_NAME}
    Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
-   2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+   2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
    ELF support by Ian Lance Taylor <ian@cygnus.com>
 
@@ -35,9 +35,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define TARGET_IS_${EMULATION_NAME}
 
-#include "config.h"
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
 #include "getopt.h"
Index: ld/emultempl/generic.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/generic.em,v
retrieving revision 1.19
diff -u -p -r1.19 generic.em
--- ld/emultempl/generic.em	4 Aug 2005 06:22:13 -0000	1.19
+++ ld/emultempl/generic.em	26 Apr 2007 06:52:37 -0000
@@ -4,8 +4,8 @@ cat >e${EMULATION_NAME}.c <<EOF
 /* This file is is generated by a shell script.  DO NOT EDIT! */
 
 /* emulate the original gld for the given ${EMULATION_NAME}
-   Copyright 1991, 1992, 1994, 1996, 1999, 2000, 2001, 2002, 2003, 2004
-   Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1994, 1996, 1999, 2000, 2001, 2002, 2003, 2004,
+   2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
 
 This file is part of GLD, the Gnu Linker.
@@ -26,8 +26,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define TARGET_IS_${EMULATION_NAME}
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 
 #include "ld.h"
Index: ld/emultempl/gld960.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/gld960.em,v
retrieving revision 1.19
diff -u -p -r1.19 gld960.em
--- ld/emultempl/gld960.em	4 Aug 2005 06:22:13 -0000	1.19
+++ ld/emultempl/gld960.em	26 Apr 2007 06:52:37 -0000
@@ -1,7 +1,7 @@
 # This shell script emits a C file. -*- C -*-
 # It does some substitutions.
 cat >e${EMULATION_NAME}.c <<EOF
-/* Copyright 1991, 1992, 1994, 1999, 2000, 2001, 2002, 2003, 2005
+/* Copyright 1991, 1992, 1994, 1999, 2000, 2001, 2002, 2003, 2005, 2007
    Free Software Foundation, Inc.
 
 This file is part of GLD, the Gnu Linker.
@@ -25,8 +25,8 @@ the Free Software Foundation, 51 Frankli
  */
 
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "bfdlink.h"
 
Index: ld/emultempl/gld960c.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/gld960c.em,v
retrieving revision 1.21
diff -u -p -r1.21 gld960c.em
--- ld/emultempl/gld960c.em	4 Aug 2005 06:22:13 -0000	1.21
+++ ld/emultempl/gld960c.em	26 Apr 2007 06:52:37 -0000
@@ -2,7 +2,7 @@
 # It does some substitutions.
 cat >e${EMULATION_NAME}.c <<EOF
 /* Copyright 1991, 1993, 1994, 1996, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005 Free Software Foundation, Inc.
+   2005, 2007 Free Software Foundation, Inc.
 
 This file is part of GLD, the Gnu Linker.
 
@@ -26,8 +26,8 @@ Software Foundation, 51 Franklin Street 
  */
 
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
 #include "bfdlink.h"
Index: ld/emultempl/linux.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/linux.em,v
retrieving revision 1.20
diff -u -p -r1.20 linux.em
--- ld/emultempl/linux.em	4 Aug 2005 06:22:13 -0000	1.20
+++ ld/emultempl/linux.em	26 Apr 2007 07:44:06 -0000
@@ -10,7 +10,7 @@ cat >e${EMULATION_NAME}.c <<EOF
 
 /* Linux a.out emulation code for ${EMULATION_NAME}
    Copyright 1991, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002,
-   2003, 2004, 2005 Free Software Foundation, Inc.
+   2003, 2004, 2005, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
    Linux support by Eric Youngdale <ericy@cais.cais.com>
 
@@ -32,8 +32,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define TARGET_IS_${EMULATION_NAME}
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 
 #include "ld.h"
Index: ld/emultempl/lnk960.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/lnk960.em,v
retrieving revision 1.20
diff -u -p -r1.20 lnk960.em
--- ld/emultempl/lnk960.em	4 Aug 2005 06:22:13 -0000	1.20
+++ ld/emultempl/lnk960.em	26 Apr 2007 06:52:37 -0000
@@ -2,8 +2,8 @@
 # It does some substitutions.
 cat >e${EMULATION_NAME}.c <<EOF
 /* intel coff loader emulation specific stuff
-   Copyright 1991, 1992, 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2003, 2005
-   Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2003,
+   2005, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
 
 This file is part of GLD, the Gnu Linker.
@@ -22,9 +22,9 @@ You should have received a copy of the G
 along with GLD; see the file COPYING.  If not, write to
 the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
+#include "sysdep.h"
 #include "libiberty.h"
 #include "bfd.h"
-#include "sysdep.h"
 #include "bfdlink.h"
 
 /*#include "archures.h"*/
Index: ld/emultempl/m68kcoff.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/m68kcoff.em,v
retrieving revision 1.16
diff -u -p -r1.16 m68kcoff.em
--- ld/emultempl/m68kcoff.em	4 Aug 2005 06:22:13 -0000	1.16
+++ ld/emultempl/m68kcoff.em	26 Apr 2007 06:52:37 -0000
@@ -4,7 +4,8 @@ cat >e${EMULATION_NAME}.c <<EOF
 /* This file is is generated by a shell script.  DO NOT EDIT! */
 
 /* Handle embedded relocs for m68k.
-   Copyright 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+   Copyright 2000, 2002, 2003, 2004, 2005, 2007
+   Free Software Foundation, Inc.
    Written by Michael Sokolov <msokolov@ivan.Harhan.ORG>, based on generic.em
    by Steve Chamberlain <steve@cygnus.com>, embedded relocs code based on
    mipsecoff.em by Ian Lance Taylor <ian@cygnus.com>.
@@ -27,8 +28,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define TARGET_IS_${EMULATION_NAME}
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 
 #include "ld.h"
Index: ld/emultempl/pe.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/pe.em,v
retrieving revision 1.123
diff -u -p -r1.123 pe.em
--- ld/emultempl/pe.em	19 Jan 2007 15:40:55 -0000	1.123
+++ ld/emultempl/pe.em	26 Apr 2007 06:52:38 -0000
@@ -49,8 +49,8 @@ cat >>e${EMULATION_NAME}.c <<EOF
 	bfd_${EMULATION_NAME}_process_before_allocation
 #endif
  
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "getopt.h"
 #include "libiberty.h"
Index: ld/emultempl/pep.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/pep.em,v
retrieving revision 1.1
diff -u -p -r1.1 pep.em
--- ld/emultempl/pep.em	20 Sep 2006 11:35:09 -0000	1.1
+++ ld/emultempl/pep.em	26 Apr 2007 06:52:40 -0000
@@ -10,7 +10,7 @@ rm -f e${EMULATION_NAME}.c
 (echo;echo;echo;echo;echo)>e${EMULATION_NAME}.c # there, now line numbers match ;-)
 cat >>e${EMULATION_NAME}.c <<EOF
 /* This file is part of GLD, the Gnu Linker.
-   Copyright 2006 Free Software Foundation, Inc.
+   Copyright 2006, 2007 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -37,8 +37,8 @@ cat >>e${EMULATION_NAME}.c <<EOF
 #define COFF_WITH_PE
 #define COFF_WITH_pex64
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "getopt.h"
 #include "libiberty.h"
Index: ld/emultempl/sunos.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/sunos.em,v
retrieving revision 1.26
diff -u -p -r1.26 sunos.em
--- ld/emultempl/sunos.em	16 Sep 2006 18:12:16 -0000	1.26
+++ ld/emultempl/sunos.em	26 Apr 2007 06:52:42 -0000
@@ -10,7 +10,7 @@ cat >e${EMULATION_NAME}.c <<EOF
 
 /* SunOS emulation code for ${EMULATION_NAME}
    Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
-   2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+   2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
    SunOS shared library support by Ian Lance Taylor <ian@cygnus.com>
 
@@ -32,8 +32,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define TARGET_IS_${EMULATION_NAME}
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "libiberty.h"
 #include "safe-ctype.h"
Index: ld/emultempl/ticoff.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/ticoff.em,v
retrieving revision 1.16
diff -u -p -r1.16 ticoff.em
--- ld/emultempl/ticoff.em	4 Aug 2005 06:22:13 -0000	1.16
+++ ld/emultempl/ticoff.em	26 Apr 2007 06:52:42 -0000
@@ -3,7 +3,8 @@
 (echo;echo;echo;echo)>e${EMULATION_NAME}.c # there, now line numbers match ;-)
 cat >>e${EMULATION_NAME}.c <<EOF
 /* This file is part of GLD, the Gnu Linker.
-   Copyright 1999, 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2002, 2003, 2004, 2007
+   Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -24,8 +25,8 @@ Foundation, Inc., 51 Franklin Street - F
 
 #define TARGET_IS_${EMULATION_NAME}
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "bfdlink.h"
 #include "getopt.h"
 
Index: ld/emultempl/vanilla.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/vanilla.em,v
retrieving revision 1.13
diff -u -p -r1.13 vanilla.em
--- ld/emultempl/vanilla.em	4 Aug 2005 06:22:13 -0000	1.13
+++ ld/emultempl/vanilla.em	26 Apr 2007 06:52:42 -0000
@@ -2,7 +2,7 @@
 # It does some substitutions.
 cat >e${EMULATION_NAME}.c <<EOF
 /* A vanilla emulation with no defaults
-   Copyright 1991, 1992, 1994, 2000, 2001, 2002, 2003
+   Copyright 1991, 1992, 1994, 2000, 2001, 2002, 2003, 2007
    Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
 
@@ -22,9 +22,8 @@ You should have received a copy of the G
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include "bfd.h"
 #include "sysdep.h"
-
+#include "bfd.h"
 
 #include "ld.h"
 #include "ldmisc.h"
Index: opcodes/ns32k-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/ns32k-dis.c,v
retrieving revision 1.9
diff -u -p -r1.9 ns32k-dis.c
--- opcodes/ns32k-dis.c	1 Jul 2005 11:16:33 -0000	1.9
+++ opcodes/ns32k-dis.c	26 Apr 2007 06:52:56 -0000
@@ -1,5 +1,5 @@
 /* Print National Semiconductor 32000 instructions.
-   Copyright 1986, 1988, 1991, 1992, 1994, 1998, 2001, 2002, 2005
+   Copyright 1986, 1988, 1991, 1992, 1994, 1998, 2001, 2002, 2005, 2007
    Free Software Foundation, Inc.
 
    This file is part of opcodes library.
@@ -20,8 +20,8 @@
    MA 02110-1301, USA.  */
 
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
 #include "dis-asm.h"
 #if !defined(const) && !defined(__STDC__)
 #define const

-- 
Alan Modra
IBM OzLabs - Linux Technology Centre


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]