From 8e97a0301d2803d6ceaeb7bb0ac8a338233e1551 Mon Sep 17 00:00:00 2001 From: meissner Date: Thu, 2 Jul 1998 11:42:39 +0000 Subject: Add initial varray support infrastructure git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20892 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/rtl.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gcc/rtl.h') diff --git a/gcc/rtl.h b/gcc/rtl.h index 5f508397ca2..7515dcf4c3c 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -830,9 +830,11 @@ extern rtx read_rtx PROTO((FILE *)); cast their pointers to char *, and all of the xrealloc's don't use void * yet. */ extern char *xmalloc PROTO((size_t)); +extern char *xcalloc PROTO((size_t, size_t)); extern char *xrealloc PROTO((void *, size_t)); #else extern char *xmalloc (); +extern char *xcalloc (); extern char *xrealloc (); #endif -- cgit v1.2.1