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/nlm.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    11/* NLM (NetWare Loadable Module) executable support for BFD.
    2    Copyright 1993, 1994 Free Software Foundation, Inc.
     2   Copyright 1993, 1994, 2001, 2002 Free Software Foundation, Inc.
    33
    44This file is part of BFD, the Binary File Descriptor library.
     
    2626   information.  */
    2727
    28 boolean
     28bfd_boolean
    2929nlm_mkobject (abfd)
    3030     bfd * abfd;
    3131{
    32   nlm_tdata (abfd) =
    33     (struct nlm_obj_tdata *) bfd_zalloc (abfd, sizeof (struct nlm_obj_tdata));
     32  bfd_size_type amt = sizeof (struct nlm_obj_tdata);
     33  nlm_tdata (abfd) = (struct nlm_obj_tdata *) bfd_zalloc (abfd, amt);
    3434  if (nlm_tdata (abfd) == NULL)
    35     return (false);
     35    return FALSE;
    3636
    3737  if (nlm_architecture (abfd) != bfd_arch_unknown)
     
    4040
    4141  /* since everything is done at close time, do we need any initialization? */
    42   return (true);
     42  return TRUE;
    4343}
    4444
    4545/* Set the architecture and machine for an NLM object.  */
    4646
    47 boolean
     47bfd_boolean
    4848nlm_set_arch_mach (abfd, arch, machine)
    4949     bfd * abfd;
Note: See TracChangeset for help on using the changeset viewer.