Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/bfd/genlink.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    11/* 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.
    33   Written by Ian Lance Taylor, Cygnus Support.
    44
     
    4343  struct bfd_link_hash_entry root;
    4444  /* Whether this symbol has been written out.  */
    45   boolean written;
     45  bfd_boolean written;
    4646  /* Symbol from input BFD.  */
    4747  asymbol *sym;
     
    5555};
    5656
    57 /* Look up an entry in an generic link hash table.  */
     57/* Look up an entry in a generic link hash table.  */
    5858
    5959#define _bfd_generic_link_hash_lookup(table, string, create, copy, follow) \
     
    6161   bfd_link_hash_lookup (&(table)->root, (string), (create), (copy), (follow)))
    6262
    63 /* Traverse an generic link hash table.  */
     63/* Traverse a generic link hash table.  */
    6464
    6565#define _bfd_generic_link_hash_traverse(table, func, info)              \
    6666  (bfd_link_hash_traverse                                               \
    6767   (&(table)->root,                                                     \
    68     (boolean (*) PARAMS ((struct bfd_link_hash_entry *, PTR))) (func),  \
     68    (bfd_boolean (*) PARAMS ((struct bfd_link_hash_entry *, PTR))) (func), \
    6969    (info)))
    7070
     
    8383/* Add the symbols of input_bfd to the symbols being built for
    8484   output_bfd.  */
    85 extern boolean _bfd_generic_link_output_symbols
     85extern bfd_boolean _bfd_generic_link_output_symbols
    8686  PARAMS ((bfd *output_bfd, bfd *input_bfd, struct bfd_link_info *,
    8787           size_t *psymalloc));
     
    101101   via _bfd_generic_link_hash_traverse.  The second argument must
    102102   actually be a struct generic_write_global_symbol_info *.  */
    103 extern boolean _bfd_generic_link_write_global_symbol
     103extern bfd_boolean _bfd_generic_link_write_global_symbol
    104104  PARAMS ((struct generic_link_hash_entry *, PTR));
    105105
Note: See TracChangeset for help on using the changeset viewer.