summaryrefslogtreecommitdiffstats
path: root/Include/compile.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-04-03 19:00:55 (GMT)
committerGuido van Rossum <guido@python.org>1991-04-03 19:00:55 (GMT)
commite543a94746ec2e51b2821cd739291c8d5f7c7f6a (patch)
treef6697c33b8f43dc2d537894c984efac71d357527 /Include/compile.h
parent62d4624ea39b25a1b76d354486a52ef653a4aec0 (diff)
downloadcpython-e543a94746ec2e51b2821cd739291c8d5f7c7f6a.zip
cpython-e543a94746ec2e51b2821cd739291c8d5f7c7f6a.tar.gz
cpython-e543a94746ec2e51b2821cd739291c8d5f7c7f6a.tar.bz2
Satisfy Standard C rules about struct scope.
Diffstat (limited to 'Include/compile.h')
-rw-r--r--Include/compile.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/compile.h b/Include/compile.h
index cb75b51..abd458c 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 *));