From 796798b29c711f6bb0ac08feccf47ab7c41bd215 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 2 Jan 2009 20:47:27 +0000 Subject: [PATCH] fix compilation on non-Windows platforms --- Python/pythonrun.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 0497ae6b0f1..f2cd819b1c4 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