This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: where is the "tree"'s definition?


"He HongFu" <hhfesle1982@163.com> writes:

> Hi, All
> 	Sorry, a simple question, where is the "tree"'s definition? I cannot find it in "tree.h" and any other, 

In the current development sources,

union tree_node;
typedef union tree_node *tree;

appears in coretypes.h.  The definition of union tree_node IS in
tree.h.

zw


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]