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 /Python/getopt.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 'Python/getopt.c')
-rw-r--r-- | Python/getopt.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Python/getopt.c b/Python/getopt.c index d80f607..5429fac5 100644 --- a/Python/getopt.c +++ b/Python/getopt.c @@ -27,6 +27,10 @@ #include <stdio.h> #include <string.h> +#ifdef __cplusplus +extern "C" { +#endif + int _PyOS_opterr = 1; /* generate error messages */ int _PyOS_optind = 1; /* index into argv array */ char *_PyOS_optarg = NULL; /* optional argument */ @@ -81,3 +85,8 @@ int _PyOS_GetOpt(int argc, char **argv, char *optstring) return option; } + +#ifdef __cplusplus +} +#endif + |