aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-04-03 19:00:55 +0000
committerGuido van Rossum <guido@python.org>1991-04-03 19:00:55 +0000
commite543a94746ec2e51b2821cd739291c8d5f7c7f6a (patch)
treef6697c33b8f43dc2d537894c984efac71d357527 /Include/compile.h
parentCreate code string with initial size of 1000 instead of 0. (diff)
downloadcpython-e543a94746ec2e51b2821cd739291c8d5f7c7f6a.tar.gz
cpython-e543a94746ec2e51b2821cd739291c8d5f7c7f6a.tar.bz2
cpython-e543a94746ec2e51b2821cd739291c8d5f7c7f6a.zip
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 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 *));