From: Guido van Rossum Date: Sun, 18 Nov 1990 17:37:25 +0000 (+0000) Subject: Added prototype for new function freenode(). X-Git-Tag: v0.9.8~1106 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cc398d1cbbdbd627b8ebf8c82e9260ae724a1df5;p=thirdparty%2FPython%2Fcpython.git Added prototype for new function freenode(). --- diff --git a/Include/node.h b/Include/node.h index d01128b2b9e1..9730e5734ef2 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)