mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 19:14:52 +08:00
* opncls.c (bfd_zalloc): Document this function.
This commit is contained in:
parent
ee3c981485
commit
c3e8c140a3
@ -1,3 +1,7 @@
|
||||
2005-02-23 Ben Elliston <bje@au.ibm.com>
|
||||
|
||||
* opncls.c (bfd_zalloc): Document this function.
|
||||
|
||||
2005-02-21 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* coffcode.h (sec_to_styp_flags): Replaced SEC_CLINK with
|
||||
|
13
bfd/opncls.c
13
bfd/opncls.c
@ -820,7 +820,6 @@ DESCRIPTION
|
||||
<<abfd>> and return a pointer to it.
|
||||
*/
|
||||
|
||||
|
||||
void *
|
||||
bfd_alloc (bfd *abfd, bfd_size_type size)
|
||||
{
|
||||
@ -838,6 +837,18 @@ bfd_alloc (bfd *abfd, bfd_size_type size)
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
INTERNAL_FUNCTION
|
||||
bfd_zalloc
|
||||
|
||||
SYNOPSIS
|
||||
void *bfd_zalloc (bfd *abfd, bfd_size_type wanted);
|
||||
|
||||
DESCRIPTION
|
||||
Allocate a block of @var{wanted} bytes of zeroed memory
|
||||
attached to <<abfd>> and return a pointer to it.
|
||||
*/
|
||||
|
||||
void *
|
||||
bfd_zalloc (bfd *abfd, bfd_size_type size)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user