Kaydet (Commit) 8328bbc5 authored tarafından Eric Smith's avatar Eric Smith

Removed duplicate Py_CHARMASK define. It's already defined in Python.h.

üst 322349e3
...@@ -5,14 +5,6 @@ ...@@ -5,14 +5,6 @@
#define _SGI_MP_SOURCE #define _SGI_MP_SOURCE
#endif #endif
/* Convert a possibly signed character to a nonnegative int */
/* XXX This assumes characters are 8 bits wide */
#ifdef __CHAR_UNSIGNED__
#define Py_CHARMASK(c) (c)
#else
#define Py_CHARMASK(c) ((c) & 0xff)
#endif
/* strtol and strtoul, renamed to avoid conflicts */ /* strtol and strtoul, renamed to avoid conflicts */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment