summaryrefslogtreecommitdiff
path: root/Python/mystrtoul.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-01 00:52:26 +0000
committerGuido van Rossum <guido@python.org>1996-08-01 00:52:26 +0000
commit9eea31bfc36fded999ade21905d35dde5dddba59 (patch)
tree0ae9cc4016befc3ffa340c162a760f4b862a9e06 /Python/mystrtoul.c
parent6fc0f00191ff6dc39ae3af64617b95c2f44b082d (diff)
downloadcpython-9eea31bfc36fded999ade21905d35dde5dddba59.tar.gz
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 4181ea1f3d..a646283789 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__