diff options
author | Alan Modra <amodra@bigpond.net.au> | 2000-07-11 03:42:41 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2000-07-11 03:42:41 +0000 |
commit | 1f6b458785f1457f2a7a7fa7a190c4b2935f8721 (patch) | |
tree | 84663fed62e918a32a5eb680134d6598a8c9415f /ld/emultempl/generic.em | |
parent | e5c850f9dc7d3297040d69042142b872608a8a95 (diff) | |
download | binutils-redhat-1f6b458785f1457f2a7a7fa7a190c4b2935f8721.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/generic.em')
-rw-r--r-- | ld/emultempl/generic.em | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ld/emultempl/generic.em b/ld/emultempl/generic.em index 6635e09e20..f96323e211 100644 --- a/ld/emultempl/generic.em +++ b/ld/emultempl/generic.em @@ -4,7 +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 (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. @@ -31,10 +32,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "ld.h" #include "ldmain.h" -#include "ldemul.h" -#include "ldfile.h" #include "ldmisc.h" +#include "ldexp.h" +#include "ldlang.h" +#include "ldfile.h" +#include "ldemul.h" + static void gld${EMULATION_NAME}_before_parse PARAMS ((void)); static char *gld${EMULATION_NAME}_get_script PARAMS ((int *isfile)); |