diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-07-02 11:42:39 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-07-02 11:42:39 +0000 |
commit | 8e97a0301d2803d6ceaeb7bb0ac8a338233e1551 (patch) | |
tree | 3c0b7c2e8e7833bd540531f442c4612435c1c382 /gcc/rtl.h | |
parent | ca4408947b3ae67da24cc87413ef2d86405193a8 (diff) | |
download | gcc-8e97a0301d2803d6ceaeb7bb0ac8a338233e1551.tar.gz |
Add initial varray support infrastructure
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20892 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 |