daily update
[binutils-gdb.git] / bfd / corefile.c
index 609c4e6f68e720b57007548a0c58b2d20eb3d4cd..da9d4d739dc5d4310af99267ba0775e466de432a 100644 (file)
@@ -1,5 +1,5 @@
 /* Core file generic interface routines for BFD.
-   Copyright 1990, 1991, 1992, 1993, 1994, 2000, 2001
+   Copyright 1990, 1991, 1992, 1993, 1994, 2000, 2001, 2002
    Free Software Foundation, Inc.
    Written by Cygnus Support.
 
@@ -44,7 +44,7 @@ DESCRIPTION
 
 */
 
-CONST char *
+const char *
 bfd_core_file_failing_command (abfd)
      bfd *abfd;
 {
@@ -83,21 +83,21 @@ FUNCTION
        core_file_matches_executable_p
 
 SYNOPSIS
-       boolean core_file_matches_executable_p
+       bfd_boolean core_file_matches_executable_p
                (bfd *core_bfd, bfd *exec_bfd);
 
 DESCRIPTION
-       Return <<true>> if the core file attached to @var{core_bfd}
+       Return <<TRUE>> if the core file attached to @var{core_bfd}
        was generated by a run of the executable file attached to
-       @var{exec_bfd}, <<false>> otherwise.
+       @var{exec_bfd}, <<FALSE>> otherwise.
 */
-boolean
+bfd_boolean
 core_file_matches_executable_p (core_bfd, exec_bfd)
      bfd *core_bfd, *exec_bfd;
 {
     if ((core_bfd->format != bfd_core) || (exec_bfd->format != bfd_object)) {
            bfd_set_error (bfd_error_wrong_format);
-           return false;
+           return FALSE;
        }
 
     return BFD_SEND (core_bfd, _core_file_matches_executable_p,