2002-11-30 Andrew Cagney <cagney@redhat.com>

* exec.c (xfer_memory): Replace boolean with int.
	* p-exp.y: Use 0 instead of false.
	* corelow.c (gdb_check_format): Change return type to int from
	boolean.
	* utils.c: Don't include <curses.h> or <term.h> first.
This commit is contained in:
Andrew Cagney
2002-11-30 16:33:55 +00:00
parent 0174e383ca
commit 020cc13c3a
5 changed files with 21 additions and 23 deletions

View File

@ -62,7 +62,7 @@ static int solib_add_stub (PTR);
static struct core_fns *sniff_core_bfd (bfd *);
static boolean gdb_check_format (bfd *);
static int gdb_check_format (bfd *);
static void core_open (char *, int);
@ -160,7 +160,7 @@ default_check_format (bfd *abfd)
/* Attempt to recognize core file formats that BFD rejects. */
static boolean
static int
gdb_check_format (bfd *abfd)
{
struct core_fns *cf;