summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1990-11-18 17:37:25 (GMT)
committerGuido van Rossum <guido@python.org>1990-11-18 17:37:25 (GMT)
commitcc398d1cbbdbd627b8ebf8c82e9260ae724a1df5 (patch)
tree4ead27c422cca72cd5d957f502f93f13d95247e3 /Include
parent03a24cd47b0d067110db1026e99e13e974409768 (diff)
downloadcpython-cc398d1cbbdbd627b8ebf8c82e9260ae724a1df5.zip
cpython-cc398d1cbbdbd627b8ebf8c82e9260ae724a1df5.tar.gz
cpython-cc398d1cbbdbd627b8ebf8c82e9260ae724a1df5.tar.bz2
Added prototype for new function freenode().
Diffstat (limited to 'Include')
-rw-r--r--Include/node.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/node.h b/Include/node.h
index d01128b..9730e57 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)