/* ノード (トークン,タプル兼用) の型 */ typedef struct node { int type; struct node *left, *right; } *Node; #define YYSTYPE Node #define NUL 0