From e543a94746ec2e51b2821cd739291c8d5f7c7f6a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 3 Apr 1991 19:00:55 +0000 Subject: [PATCH] Satisfy Standard C rules about struct scope. --- Include/compile.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Include/compile.h b/Include/compile.h index cb75b51aa18..abd458cf438 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 *));