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/strtod.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Python/strtod.c') diff --git a/Python/strtod.c b/Python/strtod.c index 1c475e5ca3..a0991d5c68 100644 --- a/Python/strtod.c +++ b/Python/strtod.c @@ -54,7 +54,9 @@ static double HUGE = 1.7976931348623157e308; extern double atof(); /* Only called when result known to be ok */ +#ifndef DONT_HAVE_ERRNO_H #include +#endif extern int errno; double strtod(str, ptr) -- cgit v1.2.1