diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-12-11 01:30:59 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-12-11 01:30:59 +0000 |
commit | 8b1773ee6a24cf8359229c0a8994799cb0966526 (patch) | |
tree | a8a0f547813d8ba21e755aec400f81038cfaa39a /gdb | |
parent | d8d144a0abc05ab336113b436dec61d45e277662 (diff) | |
download | gdb-8b1773ee6a24cf8359229c0a8994799cb0966526.zip gdb-8b1773ee6a24cf8359229c0a8994799cb0966526.tar.gz gdb-8b1773ee6a24cf8359229c0a8994799cb0966526.tar.bz2 |
Fix compiler warnings on FreeBSD.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 13 | ||||
-rw-r--r-- | gdb/i386b-nat.c | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a36e0be..e604a7e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,16 @@ +Fri Dec 11 09:07:05 1998 Andrew Cagney <cagney@b1.cygnus.com> + + * i386b-nat.c: Include "expression.h". + + * symtab.h: Don't include "gnu-regex.h". + + * solib.c (solib_add_common_symbols): Cast parameters passed to + make_cleanup to use the new make_cleanup_func typedef. + + * inftarg.c: Include "wait.h" after, rather than before, <wait.h>. + "wait.h" was defining all WIF* macro's instead of filling in those + that <wait.h> missed. + Fri Dec 11 09:52:04 1998 Andrew Cagney <cagney@chook> * gdbtk-cmds.c, mipsm3-nat.c, hppah-nat.c, infptrace.c, diff --git a/gdb/i386b-nat.c b/gdb/i386b-nat.c index 938b599..e784773 100644 --- a/gdb/i386b-nat.c +++ b/gdb/i386b-nat.c @@ -125,6 +125,7 @@ i386_register_u_addr (blockend, regnum) #endif /* !FETCH_INFERIOR_REGISTERS */ #ifdef FLOAT_INFO +#include "expression.h" #include "language.h" /* for local_hex_string */ #include "floatformat.h" |