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/ostrip.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/ostrip.c')
-rwxr-xr-x | binutils/ostrip.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/binutils/ostrip.c b/binutils/ostrip.c index 6ba318c..a66c76a 100755 --- a/binutils/ostrip.c +++ b/binutils/ostrip.c @@ -15,16 +15,15 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include "bfd.h" #include "sysdep.h" +#include "getopt.h" #include <stdio.h> #include <signal.h> #include <sys/types.h> #include <sys/stat.h> -#include "getopt.h" -#include "bfd.h" - enum strip_action { strip_undef, strip_all, /* strip all symbols */ |