]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Satisfy Standard C rules about struct scope.
authorGuido van Rossum <guido@python.org>
Wed, 3 Apr 1991 19:00:55 +0000 (19:00 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 3 Apr 1991 19:00:55 +0000 (19:00 +0000)
Include/compile.h

index cb75b51aa1893b453a4ef2b1b8bfc7a0a5f88940..abd458cf438b1ce9017fda322cc8f38a4f3a94df 100644 (file)
@@ -44,4 +44,5 @@ extern typeobject Codetype;
 
 
 /* Public interface */
+struct _node; /* Declare the existence of this type */
 codeobject *compile PROTO((struct _node *, char *));