diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-13 02:06:09 (GMT) |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-13 02:06:09 (GMT) |
commit | ac6bd46d5c30f4e643120aeef1ccd531801a2181 (patch) | |
tree | f753bb13f17b1490ca3c26580c16f1d32ea748dc /Objects/unicodeobject.c | |
parent | 28c5f1fa169ddaec9ad4914e2c263e383390ae43 (diff) | |
download | cpython-ac6bd46d5c30f4e643120aeef1ccd531801a2181.zip cpython-ac6bd46d5c30f4e643120aeef1ccd531801a2181.tar.gz cpython-ac6bd46d5c30f4e643120aeef1ccd531801a2181.tar.bz2 |
spread the extern "C" { } magic pixie dust around. Python itself builds now
using a C++ compiler. Still lots and lots of errors in the modules built by
setup.py, and a bunch of warnings from g++ in the core.
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 1e0db15..30ae6f0 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -83,6 +83,11 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ + +#ifdef __cplusplus +extern "C" { +#endif + /* Free list for Unicode objects */ static PyUnicodeObject *unicode_freelist; static int unicode_freelist_size; @@ -7418,6 +7423,11 @@ _PyUnicode_Fini(void) unicode_freelist_size = 0; } +#ifdef __cplusplus +} +#endif + + /* Local variables: c-basic-offset: 4 |