From 28e7433da246f2a1bcf2f555bac47fb7106662de Mon Sep 17 00:00:00 2001 From: ghazi Date: Fri, 13 Nov 1998 16:33:50 +0000 Subject: [PATCH] * libiberty.h: Prototype xcalloc. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23641 138bc75d-0d04-0410-961f-82ee72b054a4 --- include/ChangeLog | 4 ++++ include/libiberty.h | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/include/ChangeLog b/include/ChangeLog index 3b87813..8d00933 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +Fri Nov 13 19:19:11 1998 Kaveh R. Ghazi + + * libiberty.h: Prototype xcalloc. + Sun Nov 8 17:42:25 1998 Kaveh R. Ghazi * ansidecl.h: Wrap problematic macros with !IN_GCC. diff --git a/include/libiberty.h b/include/libiberty.h index 6fb29d2..86fec2d 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -135,6 +135,11 @@ extern PTR xmalloc PARAMS ((size_t)); extern PTR xrealloc PARAMS ((PTR, size_t)); +/* Allocate memory without fail and set it to zero. This works like + xmalloc. */ + +extern PTR xcalloc PARAMS ((size_t, size_t)); + /* Copy a string into a memory buffer without fail. */ extern char *xstrdup PARAMS ((const char *)); -- 2.7.4