]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libiberty/calloc.c
configure.in (MAKEINFO, PERL): Detect these.
[thirdparty/gcc.git] / libiberty / calloc.c
index 334b18db86a41d303e013e5380028942e663752d..b342f6c1b3b54633cb53822cbd9e57368a54df75 100644 (file)
@@ -1,5 +1,16 @@
 /* calloc -- allocate memory which has been initialized to zero.
    This function is in the public domain. */
+
+/*
+
+@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
+
+*/
  
 #include "ansidecl.h"
 #include "libiberty.h"