From: Guido van Rossum Date: Thu, 4 Apr 1991 15:44:12 +0000 (+0000) Subject: Add declaration of struct _node, for scoping reasons. X-Git-Tag: v0.9.8~998 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=324aa79f6689a8e698890ab8700224ae0966beb4;p=thirdparty%2FPython%2Fcpython.git Add declaration of struct _node, for scoping reasons. --- diff --git a/Parser/pgen.h b/Parser/pgen.h index dd761609953f..46d81ff8fdce 100644 --- a/Parser/pgen.h +++ b/Parser/pgen.h @@ -27,4 +27,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. extern grammar gram; extern grammar *meta_grammar PROTO((void)); + +struct _node; extern grammar *pgen PROTO((struct _node *));