diff options
author | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
commit | b34976b65aea8f33690229600bbf4527ec3118e1 (patch) | |
tree | 6411348664ef81ca2aa2e3ff325116e6e6502edf /bfd/libieee.h | |
parent | 583d52d728c60410c0d39bae68ee536a7b9e7a6c (diff) | |
download | gdb-b34976b65aea8f33690229600bbf4527ec3118e1.zip gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.gz gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.bz2 |
s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify
comparisons of bfd_boolean vars with TRUE/FALSE. Formatting.
Diffstat (limited to 'bfd/libieee.h')
-rw-r--r-- | bfd/libieee.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bfd/libieee.h b/bfd/libieee.h index c48566c..56c7ce1 100644 --- a/bfd/libieee.h +++ b/bfd/libieee.h @@ -1,5 +1,5 @@ /* IEEE-695 object file formats: definitions internal to BFD. - Copyright 1990, 1991, 1992, 1994, 1996, 2001 + Copyright 1990, 1991, 1992, 1994, 1996, 2001, 2002 Free Software Foundation, Inc. Written by Cygnus Support. Mostly Steve Chamberlain's fault. @@ -56,7 +56,7 @@ typedef struct ieee_per_section /* For output */ file_ptr current_pos; unsigned int current_byte; - boolean initialized; + bfd_boolean initialized; ieee_reloc_type **reloc_tail_ptr; } ieee_per_section_type; @@ -72,8 +72,8 @@ typedef struct { typedef struct ieee_data_struct { common_header_type h; - boolean read_symbols; - boolean read_data; + bfd_boolean read_symbols; + bfd_boolean read_data; file_ptr output_cursor; /* Map of section indexes to section ptrs */ asection **section_table; @@ -103,10 +103,10 @@ typedef struct ieee_data_struct int external_reference_base_offset; - boolean symbol_table_full; + bfd_boolean symbol_table_full; -boolean done_debug; +bfd_boolean done_debug; bfd_chain_type *chain_head; |