diff options
author | John Gilmore <gnu@cygnus> | 1991-10-11 11:22:05 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-11 11:22:05 +0000 |
commit | 2a5f387b08e8dbd8ca5d0205b5b337abb7d5c9cf (patch) | |
tree | a302fb0937843d5943c445b3f92318c40e0d30bf /binutils/copy.c | |
parent | 1b78540a998448aae14f21a9c7922d0b5ade161a (diff) | |
download | gdb-2a5f387b08e8dbd8ca5d0205b5b337abb7d5c9cf.zip gdb-2a5f387b08e8dbd8ca5d0205b5b337abb7d5c9cf.tar.gz gdb-2a5f387b08e8dbd8ca5d0205b5b337abb7d5c9cf.tar.bz2 |
Include bfd.h before sysdep.h, so ansidecl and PROTO() get defined first.
Diffstat (limited to 'binutils/copy.c')
-rw-r--r-- | binutils/copy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/binutils/copy.c b/binutils/copy.c index 3abe5a6..83aba5e 100644 --- a/binutils/copy.c +++ b/binutils/copy.c @@ -1,8 +1,7 @@ /*** copy.c -- copy object file from input to output, optionally massaging it */ -#include <sysdep.h> #include "bfd.h" - +#include "sysdep.h" asymbol **sympp; char *input_target = NULL; |