commit | 796798b29c711f6bb0ac08feccf47ab7c41bd215 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Fri Jan 02 20:47:27 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Fri Jan 02 20:47:27 2009 +0000 |
tree | 89cf32909d40844653c327fc226eec332bdc6191 | |
parent | 9ac4927125d0de98b7393afc5b13cfa4e3ce75f2 [diff] [blame] |
fix compilation on non-Windows platforms
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 0497ae6..f2cd819 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c
@@ -22,7 +22,9 @@ #include <signal.h> #endif +#ifdef MS_WINDOWS #include "malloc.h" /* for alloca */ +#endif #ifdef HAVE_LANGINFO_H #include <locale.h>