aboutsummaryrefslogtreecommitdiff
path: root/libiberty/calloc.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2003-04-15 21:29:34 +0000
committerDJ Delorie <dj@redhat.com>2003-04-15 21:29:34 +0000
commit1ea16ec5b465e30a034cba7bae02ccb0eac546fd (patch)
treeac013c05bb844fe88c352ed281537b54a7288f76 /libiberty/calloc.c
parentbb32582095610c5d98aa6285bfe92a7cf52b5047 (diff)
downloadfsf-binutils-gdb-1ea16ec5b465e30a034cba7bae02ccb0eac546fd.zip
fsf-binutils-gdb-1ea16ec5b465e30a034cba7bae02ccb0eac546fd.tar.gz
fsf-binutils-gdb-1ea16ec5b465e30a034cba7bae02ccb0eac546fd.tar.bz2
merge from gcc
Diffstat (limited to 'libiberty/calloc.c')
-rw-r--r--libiberty/calloc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libiberty/calloc.c b/libiberty/calloc.c
index b342f6c..5073682 100644
--- a/libiberty/calloc.c
+++ b/libiberty/calloc.c
@@ -13,8 +13,6 @@ Uses @code{malloc} to allocate storage for @var{nelem} objects of
*/
#include "ansidecl.h"
-#include "libiberty.h"
-
#ifdef ANSI_PROTOTYPES
#include <stddef.h>
#else
@@ -23,6 +21,7 @@ Uses @code{malloc} to allocate storage for @var{nelem} objects of
/* For systems with larger pointers than ints, this must be declared. */
PTR malloc PARAMS ((size_t));
+void bzero PARAMS ((PTR, size_t));
PTR
calloc (nelem, elsize)