diff options
author | Alan Modra <amodra@gmail.com> | 2003-06-29 10:06:40 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-06-29 10:06:40 +0000 |
commit | c58b95236ce4c9345c4fa76e7ef16762e5229380 (patch) | |
tree | 332a115744ba45143797b861b78058e6f42fb995 /bfd/corefile.c | |
parent | 58611256d83c4bd2c27a88982d8449c99fdd154f (diff) | |
download | binutils-gdb-c58b95236ce4c9345c4fa76e7ef16762e5229380.tar.gz |
Convert to C90 and a few tweaks.
Diffstat (limited to 'bfd/corefile.c')
-rw-r--r-- | bfd/corefile.c | 51 |
1 files changed, 26 insertions, 25 deletions
diff --git a/bfd/corefile.c b/bfd/corefile.c index da9d4d739dc..8af4f451784 100644 --- a/bfd/corefile.c +++ b/bfd/corefile.c @@ -1,5 +1,5 @@ /* Core file generic interface routines for BFD. - Copyright 1990, 1991, 1992, 1993, 1994, 2000, 2001, 2002 + Copyright 1990, 1991, 1992, 1993, 1994, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. Written by Cygnus Support. @@ -36,7 +36,7 @@ FUNCTION bfd_core_file_failing_command SYNOPSIS - const char *bfd_core_file_failing_command(bfd *abfd); + const char *bfd_core_file_failing_command (bfd *abfd); DESCRIPTION Return a read-only string explaining which program was running @@ -45,13 +45,13 @@ DESCRIPTION */ const char * -bfd_core_file_failing_command (abfd) - bfd *abfd; +bfd_core_file_failing_command (bfd *abfd) { - if (abfd->format != bfd_core) { - bfd_set_error (bfd_error_invalid_operation); - return NULL; - } + if (abfd->format != bfd_core) + { + bfd_set_error (bfd_error_invalid_operation); + return NULL; + } return BFD_SEND (abfd, _core_file_failing_command, (abfd)); } @@ -60,7 +60,7 @@ FUNCTION bfd_core_file_failing_signal SYNOPSIS - int bfd_core_file_failing_signal(bfd *abfd); + int bfd_core_file_failing_signal (bfd *abfd); DESCRIPTION Returns the signal number which caused the core dump which @@ -68,13 +68,13 @@ DESCRIPTION */ int -bfd_core_file_failing_signal (abfd) - bfd *abfd; +bfd_core_file_failing_signal (bfd *abfd) { - if (abfd->format != bfd_core) { - bfd_set_error (bfd_error_invalid_operation); - return 0; - } + if (abfd->format != bfd_core) + { + bfd_set_error (bfd_error_invalid_operation); + return 0; + } return BFD_SEND (abfd, _core_file_failing_signal, (abfd)); } @@ -84,22 +84,23 @@ FUNCTION SYNOPSIS bfd_boolean core_file_matches_executable_p - (bfd *core_bfd, bfd *exec_bfd); + (bfd *core_bfd, bfd *exec_bfd); DESCRIPTION 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. */ + bfd_boolean -core_file_matches_executable_p (core_bfd, exec_bfd) - bfd *core_bfd, *exec_bfd; +core_file_matches_executable_p (bfd *core_bfd, bfd *exec_bfd) { - if ((core_bfd->format != bfd_core) || (exec_bfd->format != bfd_object)) { - bfd_set_error (bfd_error_wrong_format); - return FALSE; - } - - return BFD_SEND (core_bfd, _core_file_matches_executable_p, - (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 BFD_SEND (core_bfd, _core_file_matches_executable_p, + (core_bfd, exec_bfd)); } |