From 2571cc8bf50a9e08bc45116ee7f39de78139a6ca Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 7 Apr 1999 16:07:23 +0000 Subject: Changes by Mark Hammond for Windows CE. Mostly of the form #ifdef DONT_HAVE_header_H ... #endif around #include . --- Python/mystrtoul.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Python/mystrtoul.c') diff --git a/Python/mystrtoul.c b/Python/mystrtoul.c index b5ea751068..ac70e44ba7 100644 --- a/Python/mystrtoul.c +++ b/Python/mystrtoul.c @@ -60,7 +60,9 @@ PERFORMANCE OF THIS SOFTWARE. */ #include +#ifndef DONT_HAVE_ERRNO_H #include +#endif unsigned long PyOS_strtoul(str, ptr, base) -- cgit v1.2.1