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/libiberty/calloc.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    11/* calloc -- allocate memory which has been initialized to zero.
    22   This function is in the public domain. */
     3
     4/*
     5
     6@deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize})
     7
     8Uses @code{malloc} to allocate storage for @var{nelem} objects of
     9@var{elsize} bytes each, then zeros the memory.
     10
     11@end deftypefn
     12
     13*/
    314 
    415#include "ansidecl.h"
    5 #include "libiberty.h"
    6  
    716#ifdef ANSI_PROTOTYPES
    817#include <stddef.h>
     
    1322/* For systems with larger pointers than ints, this must be declared.  */
    1423PTR malloc PARAMS ((size_t));
     24void bzero PARAMS ((PTR, size_t));
    1525
    1626PTR
Note: See TracChangeset for help on using the changeset viewer.