old-cross-binutils/libiberty/calloc.c

35 lines
714 B
C
Raw Normal View History

2000-02-22 15:59:20 +00:00
/* calloc -- allocate memory which has been initialized to zero.
This function is in the public domain. */
2001-09-26 18:45:50 +00:00
/*
@deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize})
Uses @code{malloc} to allocate storage for @var{nelem} objects of
@var{elsize} bytes each, then zeros the memory.
@end deftypefn
*/
2000-02-22 15:59:20 +00:00
1999-05-03 07:29:11 +00:00
#include "ansidecl.h"
#include <stddef.h>
/* For systems with larger pointers than ints, this must be declared. */
2005-03-27 05:28:42 +00:00
PTR malloc (size_t);
void bzero (PTR, size_t);
1999-05-03 07:29:11 +00:00
PTR
2005-03-27 05:28:42 +00:00
calloc (size_t nelem, size_t elsize)
1999-05-03 07:29:11 +00:00
{
register PTR ptr;
if (nelem == 0 || elsize == 0)
nelem = elsize = 1;
ptr = malloc (nelem * elsize);
if (ptr) bzero (ptr, nelem * elsize);
return ptr;
}