diff options
-rw-r--r-- | binutils/ChangeLog | 2 | ||||
-rw-r--r-- | binutils/objdump.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 5e9e85e..dd9f8ec 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,7 @@ Fri Nov 3 12:38:09 1995 Ian Lance Taylor <ian@cygnus.com> + * objdump.c: Include <sys/types.h>. + Permit user to override DEMANGLER_PROG from command line. From Manfred Hollstein <manfred@lts.sel.alcatel.de>. * Makefile.in ($(DEMANGLER_PROG)): Depend upon diff --git a/binutils/objdump.c b/binutils/objdump.c index c768de1..46783a0 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -21,6 +21,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "getopt.h" #include "progress.h" #include "bucomm.h" +#include <sys/types.h> #include <stdio.h> #include <ctype.h> #include "dis-asm.h" |