diff options
author | Guido van Rossum <guido@python.org> | 1990-11-18 17:37:25 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-11-18 17:37:25 +0000 |
commit | cc398d1cbbdbd627b8ebf8c82e9260ae724a1df5 (patch) | |
tree | 4ead27c422cca72cd5d957f502f93f13d95247e3 /Include/node.h | |
parent | Add function to free an entire parse tree. (diff) | |
download | cpython-cc398d1cbbdbd627b8ebf8c82e9260ae724a1df5.tar.gz cpython-cc398d1cbbdbd627b8ebf8c82e9260ae724a1df5.tar.bz2 cpython-cc398d1cbbdbd627b8ebf8c82e9260ae724a1df5.zip |
Added prototype for new function freenode().
Diffstat (limited to 'Include/node.h')
-rw-r--r-- | Include/node.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/node.h b/Include/node.h index d01128b2b9e..9730e5734ef 100644 --- a/Include/node.h +++ b/Include/node.h @@ -9,6 +9,7 @@ typedef struct _node { extern node *newnode PROTO((int type)); extern node *addchild PROTO((node *n, int type, char *str)); +extern void freenode PROTO((node *n)); /* Node access functions */ #define NCH(n) ((n)->n_nchildren) |