tree.h: Declare them.

* tree.h: Declare them.

Oop.

From-SVN: r15899
This commit is contained in:
Jason Merrill 1997-10-14 18:52:33 +00:00 committed by Jason Merrill
parent f06327624c
commit 22ef8a131a
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,7 @@
Tue Oct 14 11:30:29 1997 Jason Merrill <jason@yorick.cygnus.com>
* tree.c (expr_tree_cons, build_expr_list, expralloc): New fns.
* tree.h: Declare them.
Fri Oct 10 13:46:56 1997 Doug Evans <dje@canuck.cygnus.com>

View File

@ -1228,6 +1228,7 @@ extern char *xstrdup PROTO((char *));
extern char *oballoc PROTO((int));
extern char *permalloc PROTO((int));
extern char *savealloc PROTO((int));
extern char *expralloc PROTO((int));
/* Lowest level primitive for allocating a node.
The TREE_CODE is the only argument. Contents are initialized
@ -1277,6 +1278,7 @@ extern tree build_string PROTO((int, char *));
extern tree build1 PROTO((enum tree_code, tree, tree));
extern tree build_tree_list PROTO((tree, tree));
extern tree build_decl_list PROTO((tree, tree));
extern tree build_expr_list PROTO((tree, tree));
extern tree build_decl PROTO((enum tree_code, tree, tree));
extern tree build_block PROTO((tree, tree, tree, tree, tree));
@ -1415,6 +1417,7 @@ extern tree perm_tree_cons PROTO((tree, tree, tree));
extern tree temp_tree_cons PROTO((tree, tree, tree));
extern tree saveable_tree_cons PROTO((tree, tree, tree));
extern tree decl_tree_cons PROTO((tree, tree, tree));
extern tree expr_tree_cons PROTO((tree, tree, tree));
/* Return the last tree node in a chain. */