* elf32-i386.c (elf_i386_finish_dynamic_sections): Add output_offset
[deliverable/binutils-gdb.git] / libiberty / calloc.c
index c8c0a78a7a131a2e3d2f052e7d2107a455397c2a..b342f6c1b3b54633cb53822cbd9e57368a54df75 100644 (file)
@@ -1,3 +1,17 @@
+/* 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"
  
This page took 0.026092 seconds and 4 git commands to generate.