From: Benjamin Peterson Date: Fri, 2 Jan 2009 20:47:27 +0000 (+0000) Subject: fix compilation on non-Windows platforms X-Git-Tag: v2.7a1~2417 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=796798b29c711f6bb0ac08feccf47ab7c41bd215;p=thirdparty%2FPython%2Fcpython.git fix compilation on non-Windows platforms --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 0497ae6b0f14..f2cd819b1c4d 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -22,7 +22,9 @@ #include #endif +#ifdef MS_WINDOWS #include "malloc.h" /* for alloca */ +#endif #ifdef HAVE_LANGINFO_H #include