diff options
author | Alan Modra <amodra@bigpond.net.au> | 2002-11-30 08:39:46 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2002-11-30 08:39:46 +0000 |
commit | 1bbb2b5590641fe8700c42893532b1f038e2dc1a (patch) | |
tree | 58e95643197bad1009172e001e37a90acdb234e0 /bfd/sparclynx.c | |
parent | 2d28de53382e7fc3e21c82f77c3212f6b8fa84f9 (diff) | |
download | gdb-1bbb2b5590641fe8700c42893532b1f038e2dc1a.tar.gz |
s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify
comparisons of bfd_boolean vars with TRUE/FALSE. Formatting.
Diffstat (limited to 'bfd/sparclynx.c')
-rw-r--r-- | bfd/sparclynx.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/bfd/sparclynx.c b/bfd/sparclynx.c index 4da604f489a..84d9d4a9d0a 100644 --- a/bfd/sparclynx.c +++ b/bfd/sparclynx.c @@ -1,6 +1,6 @@ /* BFD support for Sparc binaries under LynxOS. Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000, - 2001 Free Software Foundation, Inc. + 2001, 2002 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -48,7 +48,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ void NAME (lynx,set_arch_mach) PARAMS ((bfd *, unsigned long)); static void choose_reloc_size PARAMS ((bfd *)); -static boolean NAME (aout,sparclynx_write_object_contents) PARAMS ((bfd *)); +static bfd_boolean NAME (aout,sparclynx_write_object_contents) PARAMS ((bfd *)); /* This is needed to reject a NewsOS file, e.g. in gdb/testsuite/gdb.t10/crossload.exp. <kingdon@cygnus.com> @@ -163,7 +163,7 @@ choose_reloc_size (abfd) Section contents have already been written. We write the file header, symbols, and relocation. */ -static boolean +static bfd_boolean NAME(aout,sparclynx_write_object_contents) (abfd) bfd *abfd; { @@ -204,30 +204,30 @@ NAME(aout,sparclynx_write_object_contents) (abfd) WRITE_HEADERS (abfd, execp); - return true; + return TRUE; } #define MY_set_sizes sparclynx_set_sizes -static boolean sparclynx_set_sizes PARAMS ((bfd *)); +static bfd_boolean sparclynx_set_sizes PARAMS ((bfd *)); -static boolean +static bfd_boolean sparclynx_set_sizes (abfd) bfd *abfd; { switch (bfd_get_arch (abfd)) { default: - return false; + return FALSE; case bfd_arch_sparc: adata (abfd).page_size = 0x2000; adata (abfd).segment_size = 0x2000; adata (abfd).exec_bytes_size = EXEC_BYTES_SIZE; - return true; + return TRUE; case bfd_arch_m68k: adata (abfd).page_size = 0x2000; adata (abfd).segment_size = 0x20000; adata (abfd).exec_bytes_size = EXEC_BYTES_SIZE; - return true; + return TRUE; } } @@ -255,9 +255,9 @@ static const struct aout_backend_data sparclynx_aout_backend = #ifdef LYNX_CORE -char * lynx_core_file_failing_command (); -int lynx_core_file_failing_signal (); -boolean lynx_core_file_matches_executable_p (); +char * lynx_core_file_failing_command (); +int lynx_core_file_failing_signal (); +bfd_boolean lynx_core_file_matches_executable_p (); const bfd_target * lynx_core_file_p (); #define MY_core_file_failing_command lynx_core_file_failing_command |