From: Benjamin Peterson Date: Fri, 2 Jan 2009 21:24:04 +0000 (+0000) Subject: Merged revisions 68174 via svnmerge from X-Git-Tag: v3.1a1~607 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80a50acbe9de08730124bf557e042be1829d0838;p=python Merged revisions 68174 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r68174 | benjamin.peterson | 2009-01-02 14:47:27 -0600 (Fri, 02 Jan 2009) | 1 line fix compilation on non-Windows platforms ........ --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index a3cce33bed..c5f7e23adc 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -23,7 +23,9 @@ #include #endif +#ifdef MS_WINDOWS #include "malloc.h" /* for alloca */ +#endif #ifdef HAVE_LANGINFO_H #include