From cc398d1cbbdbd627b8ebf8c82e9260ae724a1df5 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 18 Nov 1990 17:37:25 +0000 Subject: [PATCH] Added prototype for new function freenode(). --- Include/node.h | 1 + 1 file changed, 1 insertion(+) 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)