diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-04 12:45:32 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-04 12:45:32 (GMT) |
commit | 5a75355792a8667969b5d677f5e4208da8ad2dc4 (patch) | |
tree | 3da9966a1f244c2662f00b7c7a64d358a00bb6f8 | |
parent | 44b3b5457a8af636504940f508b2888f6e080ca7 (diff) | |
download | cpython-5a75355792a8667969b5d677f5e4208da8ad2dc4.zip cpython-5a75355792a8667969b5d677f5e4208da8ad2dc4.tar.gz cpython-5a75355792a8667969b5d677f5e4208da8ad2dc4.tar.bz2 |
Try to fix linking failures under Windows
-rw-r--r-- | Include/pyctype.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/pyctype.h b/Include/pyctype.h index c5cc614..673cf2e 100644 --- a/Include/pyctype.h +++ b/Include/pyctype.h @@ -9,7 +9,7 @@ #define PY_CTF_SPACE 0x08 #define PY_CTF_XDIGIT 0x10 -extern const unsigned int _Py_ctype_table[256]; +PyAPI_DATA(const unsigned int) _Py_ctype_table[256]; /* Unlike their C counterparts, the following macros are not meant to * handle an int with any of the values [EOF, 0-UCHAR_MAX]. The argument @@ -22,8 +22,8 @@ extern const unsigned int _Py_ctype_table[256]; #define Py_ISALNUM(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALNUM) #define Py_ISSPACE(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_SPACE) -extern const unsigned char _Py_ctype_tolower[256]; -extern const unsigned char _Py_ctype_toupper[256]; +PyAPI_DATA(const unsigned char) _Py_ctype_tolower[256]; +PyAPI_DATA(const unsigned char) _Py_ctype_toupper[256]; #define Py_TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)]) #define Py_TOUPPER(c) (_Py_ctype_toupper[Py_CHARMASK(c)]) |