diff options
author | Bob Ippolito <bob@redivi.com> | 2006-05-23 19:31:23 (GMT) |
---|---|---|
committer | Bob Ippolito <bob@redivi.com> | 2006-05-23 19:31:23 (GMT) |
commit | d3611eb3c667f5b06200675625963a780111dbf8 (patch) | |
tree | ac5d053b3b6f0c92968f102103a1ae57ed65c50b | |
parent | 150faff1957fa421b744bfe1598fc697ba88cbc2 (diff) | |
download | cpython-d3611eb3c667f5b06200675625963a780111dbf8.zip cpython-d3611eb3c667f5b06200675625963a780111dbf8.tar.gz cpython-d3611eb3c667f5b06200675625963a780111dbf8.tar.bz2 |
forward declaration for PyStructType
-rw-r--r-- | Modules/_struct.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_struct.c b/Modules/_struct.c index 04c90e0..93b9ec1 100644 --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -8,6 +8,7 @@ #include "structmember.h" #include <ctype.h> +static PyTypeObject PyStructType; /* compatibility macros */ #if (PY_VERSION_HEX < 0x02050000) |