aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
authorMichael Meissner <meissner@cygnus.com>1998-07-02 11:42:39 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1998-07-02 11:42:39 +0000
commit848205e6edc05cb41e877c5835244ce3bd133fda (patch)
tree3c0b7c2e8e7833bd540531f442c4612435c1c382 /gcc/tree.h
parent44bb0e9324d7bdd892a20e816314be646a920f06 (diff)
downloadgcc-848205e6edc05cb41e877c5835244ce3bd133fda.zip
gcc-848205e6edc05cb41e877c5835244ce3bd133fda.tar.gz
gcc-848205e6edc05cb41e877c5835244ce3bd133fda.tar.bz2
Add initial varray support infrastructure
From-SVN: r20892
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index 6a88bee..b98f555 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -1314,9 +1314,11 @@ extern int floor_log2_wide PROTO((unsigned HOST_WIDE_INT));
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