Changeset 618 for trunk/src/binutils/ld/ldctor.c
- Timestamp:
- Aug 16, 2003, 11:33:53 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/ld/ldctor.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r617 r618 1 1 /* ldctor.c -- constructor support routines 2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 3 Free Software Foundation, Inc.2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 3 2002 Free Software Foundation, Inc. 4 4 By Steve Chamberlain <sac@cygnus.com> 5 5 … … 24 24 #include "sysdep.h" 25 25 #include "bfdlink.h" 26 27 #include <ctype.h> 26 #include "safe-ctype.h" 28 27 29 28 #include "ld.h" … … 31 30 #include "ldlang.h" 32 31 #include "ldmisc.h" 33 #include "ldgram.h"32 #include <ldgram.h> 34 33 #include "ldmain.h" 35 34 #include "ldctor.h" … … 45 44 global for the entire link; we assume that there is only a single 46 45 CONSTRUCTORS command in the linker script. */ 47 b oolean constructors_sorted;46 bfd_boolean constructors_sorted; 48 47 49 48 /* The sets we have seen. */ … … 147 146 if (name[1] != 'I' && name[1] != 'D') 148 147 return -1; 149 if (! isdigit ((unsigned char)name[3]))148 if (! ISDIGIT (name[3])) 150 149 return -1; 151 150 … … 206 205 ldctor_build_sets () 207 206 { 208 static b oolean called;207 static bfd_boolean called; 209 208 lang_statement_list_type *old; 210 b oolean header_printed;209 bfd_boolean header_printed; 211 210 struct set_info *p; 212 211 … … 215 214 if (called) 216 215 return; 217 called = true;216 called = TRUE; 218 217 219 218 if (constructors_sorted) … … 258 257 lang_list_init (stat_ptr); 259 258 260 header_printed = false;259 header_printed = FALSE; 261 260 for (p = sets; p != (struct set_info *) NULL; p = p->next) 262 261 { … … 344 343 { 345 344 minfo (_("\nSet Symbol\n\n")); 346 header_printed = true;345 header_printed = TRUE; 347 346 } 348 347 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.