aboutsummaryrefslogtreecommitdiff
path: root/ld/emultempl/vanilla.em
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-07-11 03:42:41 +0000
committerAlan Modra <amodra@gmail.com>2000-07-11 03:42:41 +0000
commitb71e277823b0b8e12b2f53f6fe77a9b401357407 (patch)
tree0cefb993b034dc906661c851e3f18ebbefb83164 /ld/emultempl/vanilla.em
parent1aea3bb85170ddc918bbaa9b394be92242576391 (diff)
downloadgdb-b71e277823b0b8e12b2f53f6fe77a9b401357407.zip
gdb-b71e277823b0b8e12b2f53f6fe77a9b401357407.tar.gz
gdb-b71e277823b0b8e12b2f53f6fe77a9b401357407.tar.bz2
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/vanilla.em')
-rw-r--r--ld/emultempl/vanilla.em9
1 files changed, 6 insertions, 3 deletions
diff --git a/ld/emultempl/vanilla.em b/ld/emultempl/vanilla.em
index 0a74abd..c91d6ca 100644
--- a/ld/emultempl/vanilla.em
+++ b/ld/emultempl/vanilla.em
@@ -2,7 +2,7 @@
# It does some substitutions.
cat >e${EMULATION_NAME}.c <<EOF
/* A vanilla emulation with no defaults
- Copyright (C) 1991, 1993 Free Software Foundation, Inc.
+ Copyright (C) 1991, 92, 93, 94, 2000 Free Software Foundation, Inc.
Written by Steve Chamberlain steve@cygnus.com
This file is part of GLD, the Gnu Linker.
@@ -26,11 +26,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "ld.h"
-#include "ldemul.h"
-#include "ldfile.h"
#include "ldmisc.h"
#include "ldmain.h"
+#include "ldexp.h"
+#include "ldlang.h"
+#include "ldfile.h"
+#include "ldemul.h"
+
static void vanilla_before_parse()
{
}