diff options
-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> |