diff options
author | Alan Modra <amodra@gmail.com> | 2000-07-11 03:42:41 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-07-11 03:42:41 +0000 |
commit | b71e277823b0b8e12b2f53f6fe77a9b401357407 (patch) | |
tree | 0cefb993b034dc906661c851e3f18ebbefb83164 /ld/emultempl/lnk960.em | |
parent | 1aea3bb85170ddc918bbaa9b394be92242576391 (diff) | |
download | binutils-gdb-b71e277823b0b8e12b2f53f6fe77a9b401357407.tar.gz |
Remove some forward declarations in ldemul.h and ldfile.h, and
re-arrange header include order.
Fix shadowing warnings in ldlang.h
Fix compile errors in mpw-elfmips.c
Diffstat (limited to 'ld/emultempl/lnk960.em')
-rw-r--r-- | ld/emultempl/lnk960.em | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ld/emultempl/lnk960.em b/ld/emultempl/lnk960.em index a4c32579ee7..6fedf333be5 100644 --- a/ld/emultempl/lnk960.em +++ b/ld/emultempl/lnk960.em @@ -2,7 +2,8 @@ # It does some substitutions. cat >e${EMULATION_NAME}.c <<EOF /* intel coff loader emulation specific stuff - Copyright (C) 1991, 93, 94, 95, 96, 1999 Free Software Foundation, Inc. + Copyright (C) 1991, 93, 94, 95, 96, 99, 2000 + Free Software Foundation, Inc. Written by Steve Chamberlain steve@cygnus.com This file is part of GLD, the Gnu Linker. @@ -28,12 +29,12 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307 /*#include "archures.h"*/ #include "ld.h" -#include "ldemul.h" +#include "ldmain.h" #include "ldmisc.h" #include "ldexp.h" #include "ldlang.h" #include "ldfile.h" -#include "ldmain.h" +#include "ldemul.h" typedef struct lib_list { char *name; |