Changeset 609 for branches/GNU/src/binutils/bfd/genlink.h
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/bfd/genlink.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* genlink.h -- interface to the BFD generic linker 2 Copyright 1993, 1994, 1996 Free Software Foundation, Inc.2 Copyright 1993, 1994, 1996, 2002 Free Software Foundation, Inc. 3 3 Written by Ian Lance Taylor, Cygnus Support. 4 4 … … 43 43 struct bfd_link_hash_entry root; 44 44 /* Whether this symbol has been written out. */ 45 b oolean written;45 bfd_boolean written; 46 46 /* Symbol from input BFD. */ 47 47 asymbol *sym; … … 55 55 }; 56 56 57 /* Look up an entry in a ngeneric link hash table. */57 /* Look up an entry in a generic link hash table. */ 58 58 59 59 #define _bfd_generic_link_hash_lookup(table, string, create, copy, follow) \ … … 61 61 bfd_link_hash_lookup (&(table)->root, (string), (create), (copy), (follow))) 62 62 63 /* Traverse a ngeneric link hash table. */63 /* Traverse a generic link hash table. */ 64 64 65 65 #define _bfd_generic_link_hash_traverse(table, func, info) \ 66 66 (bfd_link_hash_traverse \ 67 67 (&(table)->root, \ 68 (b oolean (*) PARAMS ((struct bfd_link_hash_entry *, PTR))) (func),\68 (bfd_boolean (*) PARAMS ((struct bfd_link_hash_entry *, PTR))) (func), \ 69 69 (info))) 70 70 … … 83 83 /* Add the symbols of input_bfd to the symbols being built for 84 84 output_bfd. */ 85 extern b oolean _bfd_generic_link_output_symbols85 extern bfd_boolean _bfd_generic_link_output_symbols 86 86 PARAMS ((bfd *output_bfd, bfd *input_bfd, struct bfd_link_info *, 87 87 size_t *psymalloc)); … … 101 101 via _bfd_generic_link_hash_traverse. The second argument must 102 102 actually be a struct generic_write_global_symbol_info *. */ 103 extern b oolean _bfd_generic_link_write_global_symbol103 extern bfd_boolean _bfd_generic_link_write_global_symbol 104 104 PARAMS ((struct generic_link_hash_entry *, PTR)); 105 105 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.