diff options
author | Stu Grossman <grossman@cygnus> | 1996-08-08 17:14:02 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1996-08-08 17:14:02 +0000 |
commit | e618c70e9654addf6c0ef9811eca639242d3b1d9 (patch) | |
tree | f809ee6fa13f6e19b8273dc6c3480f5b87e8b072 /gdb/somread.c | |
parent | 0f38eaa09f78a9ee92566813b28336ea789f3aa5 (diff) | |
download | gdb-e618c70e9654addf6c0ef9811eca639242d3b1d9.zip gdb-e618c70e9654addf6c0ef9811eca639242d3b1d9.tar.gz gdb-e618c70e9654addf6c0ef9811eca639242d3b1d9.tar.bz2 |
* somread.c: Rearrange order of includes to fix warnings under
hpux-10.10. Also don't include sys/file.h.
Diffstat (limited to 'gdb/somread.c')
-rw-r--r-- | gdb/somread.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/somread.c b/gdb/somread.c index fd3d56a..c2716da 100644 --- a/gdb/somread.c +++ b/gdb/somread.c @@ -20,8 +20,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "defs.h" #include "bfd.h" -#include "som.h" -#include "libhppa.h" #include <syms.h> #include "symtab.h" #include "symfile.h" @@ -32,7 +30,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "complaints.h" #include "gdb_string.h" #include "demangle.h" -#include <sys/file.h> +#include "som.h" +#include "libhppa.h" /* Various things we might complain about... */ |