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
commit020cc13c3a0782029f408a8164a13a1e5af6d538 (patch)
treeead54c7e69e02186382d78e6231457461acc585e /gdb/corelow.c
parent0174e383ca06a8115b179428d4f68a7bdd3e08f2 (diff)
downloadbinutils-gdb-020cc13c3a0782029f408a8164a13a1e5af6d538.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;