summaryrefslogtreecommitdiff
path: root/gdb/corelow.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-11-30 16:33:55 +0000
committerAndrew Cagney <cagney@redhat.com>2002-11-30 16:33:55 +0000
commitaf8b6bda5b80c533eba35af3b15a4351097b8d53 (patch)
tree9cc760ea15e10f047c223be885f036bb1c7f4428 /gdb/corelow.c
parent1bbb2b5590641fe8700c42893532b1f038e2dc1a (diff)
downloadgdb-af8b6bda5b80c533eba35af3b15a4351097b8d53.tar.gz
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.
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r--gdb/corelow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c
index 8b172b7d9c3..edcf46e26b3 100644
--- a/gdb/corelow.c
+++ b/gdb/corelow.c
@@ -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;