diff options
author | Alan Modra <amodra@gmail.com> | 2000-03-30 23:37:22 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-03-30 23:37:22 +0000 |
commit | 00ed88bd5645e6552c8cafd5b732858be516b4f7 (patch) | |
tree | 2659f90dfe87f5d8413774b86253b5270316ad5c | |
parent | 591b8fa3ef44f0ba57966561313f886eddf1349d (diff) | |
download | gdb-00ed88bd5645e6552c8cafd5b732858be516b4f7.zip gdb-00ed88bd5645e6552c8cafd5b732858be516b4f7.tar.gz gdb-00ed88bd5645e6552c8cafd5b732858be516b4f7.tar.bz2 |
Include sys/types.h before sys/stat.h for ultrix.
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 304745e..f89a4e8 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2000-03-31 John David Anglin <dave@hiauly1.hia.nrc.ca> + + * readelf.c: Include sys/types.h before sys/stat.h for ultrix. + 2000-03-27 Nick Clifton <nickc@cygnus.com> * rddbg.c (read_section_stabs_debugging_info): Catch out of range diff --git a/binutils/readelf.c b/binutils/readelf.c index 6b49356..cd1e127 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -23,6 +23,7 @@ #include <assert.h> +#include <sys/types.h> #include <sys/stat.h> #include <stdio.h> #include <time.h> |