diff options
author | Guido van Rossum <guido@python.org> | 1991-04-03 19:00:55 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-04-03 19:00:55 (GMT) |
commit | e543a94746ec2e51b2821cd739291c8d5f7c7f6a (patch) | |
tree | f6697c33b8f43dc2d537894c984efac71d357527 /Include | |
parent | 62d4624ea39b25a1b76d354486a52ef653a4aec0 (diff) | |
download | cpython-e543a94746ec2e51b2821cd739291c8d5f7c7f6a.zip cpython-e543a94746ec2e51b2821cd739291c8d5f7c7f6a.tar.gz cpython-e543a94746ec2e51b2821cd739291c8d5f7c7f6a.tar.bz2 |
Satisfy Standard C rules about struct scope.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/compile.h | 1 |
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 *)); |