From: Guido van Rossum Date: Wed, 3 Apr 1991 19:00:55 +0000 (+0000) Subject: Satisfy Standard C rules about struct scope. X-Git-Tag: v0.9.8~1022 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e543a94746ec2e51b2821cd739291c8d5f7c7f6a;p=thirdparty%2FPython%2Fcpython.git Satisfy Standard C rules about struct scope. --- diff --git a/Include/compile.h b/Include/compile.h index cb75b51aa189..abd458cf438b 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -44,4 +44,5 @@ extern typeobject Codetype; /* Public interface */ +struct _node; /* Declare the existence of this type */ codeobject *compile PROTO((struct _node *, char *));