diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1995-07-31 22:46:03 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1995-07-31 22:46:03 +0000 |
commit | 1a49497348d02ffd9ba0eab6881bb3353223a068 (patch) | |
tree | 128c13b69db4b27e1de00b36258d7d03281a4bbe /gdb/i386b-nat.c | |
parent | f641906be5812ffce356207b1248f9846c657a34 (diff) | |
download | gdb-1a49497348d02ffd9ba0eab6881bb3353223a068.zip gdb-1a49497348d02ffd9ba0eab6881bb3353223a068.tar.gz gdb-1a49497348d02ffd9ba0eab6881bb3353223a068.tar.bz2 |
* configure.in: Check for unistd.h.
* configure: Regenerated.
* command.c, cp-valprint.c, fork-child.c, i386-tdep.c,
i386b-nat.c, inflow.c, main.c, maint.c, objfiles.c, solib.c,
source.c, stack.c, symfile.c, top.c, utils.c: Include strings.h
and/or unistd.h to bring prototypes into scope.
Diffstat (limited to 'gdb/i386b-nat.c')
-rw-r--r-- | gdb/i386b-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/i386b-nat.c b/gdb/i386b-nat.c index beff646..ae17ce1 100644 --- a/gdb/i386b-nat.c +++ b/gdb/i386b-nat.c @@ -72,6 +72,7 @@ i386_register_u_addr (blockend, regnum) #ifdef FLOAT_INFO +#include "language.h" /* for local_hex_string */ #include "floatformat.h" #include <sys/param.h> @@ -115,7 +116,7 @@ struct env387 unsigned char regs[8][10]; }; -static +static void print_387_status (status, ep) unsigned short status; struct env387 *ep; @@ -124,7 +125,6 @@ print_387_status (status, ep) int bothstatus; int top; int fpreg; - unsigned char *p; bothstatus = ((status != 0) && (ep->status != 0)); if (status != 0) |