summaryrefslogtreecommitdiffstats
path: root/Python/mystrtoul.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-01 00:52:26 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-01 00:52:26 (GMT)
commit9caf77a48567af7ac8ea437824aa9609366f460a (patch)
treeb78ada3fa6724b07715862ef940681182a2670ce /Python/mystrtoul.c
parentcee555bda2c32d998ac0e69e3e8129822cb9c058 (diff)
downloadcpython-9caf77a48567af7ac8ea437824aa9609366f460a.zip
cpython-9caf77a48567af7ac8ea437824aa9609366f460a.tar.gz
cpython-9caf77a48567af7ac8ea437824aa9609366f460a.tar.bz2
Put definition of _REENTRANT in config.h
Diffstat (limited to 'Python/mystrtoul.c')
-rw-r--r--Python/mystrtoul.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/mystrtoul.c b/Python/mystrtoul.c
index 4181ea1..a646283 100644
--- a/Python/mystrtoul.c
+++ b/Python/mystrtoul.c
@@ -26,10 +26,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "config.h"
#endif
-#ifdef WITH_THREAD
-#define _REENTRANT
-#endif
-
/* Convert a possibly signed character to a nonnegative int */
/* XXX This assumes characters are 8 bits wide */
#ifdef __CHAR_UNSIGNED__