diff options
author | Nick Clifton <nickc@redhat.com> | 2005-04-07 14:07:33 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-04-07 14:07:33 +0000 |
commit | 187ffe9590bfee202e21eb905bdd245df544a323 (patch) | |
tree | f9f0540625b6e3158985eefa217538dd69487f50 | |
parent | dbbaec2634e74fc0a118c81e270c5de53685ab2c (diff) | |
download | gdb-187ffe9590bfee202e21eb905bdd245df544a323.zip gdb-187ffe9590bfee202e21eb905bdd245df544a323.tar.gz gdb-187ffe9590bfee202e21eb905bdd245df544a323.tar.bz2 |
Include ldexp.h and ldlang.h so that ldfile.h can use the lang_input_statement
type.
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/emultempl/m68kcoff.em | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 7ffd2be..61afd9a 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2005-04-07 Nick Clifton <nickc@redhat.com> + + * emultempl/m68kcoff.em: Include ldexp.h and ldlang.h so that + ldfile.h can use the lang_input_statement type. + 2005-04-06 Jakub Jelinek <jakub@redhat.com> * ldlang.c: Formatting. diff --git a/ld/emultempl/m68kcoff.em b/ld/emultempl/m68kcoff.em index 162dcf7..ba251c1 100644 --- a/ld/emultempl/m68kcoff.em +++ b/ld/emultempl/m68kcoff.em @@ -33,6 +33,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "ld.h" #include "ldmain.h" +#include "ldexp.h" +#include "ldlang.h" #include "ldfile.h" #include "ldemul.h" #include "ldmisc.h" |