summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-01-02 21:24:04 +0000
committerBenjamin Peterson <benjamin@python.org>2009-01-02 21:24:04 +0000
commitd0773ffe5e7a86241335281140e3f5b7cae79afa (patch)
tree4d5283a4cc0510e3d3b9245cdf43fa47bc6af495 /Python/pythonrun.c
parentaf533083d64d3837910925666971ab61dcb63819 (diff)
downloadcpython-d0773ffe5e7a86241335281140e3f5b7cae79afa.tar.gz
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 ........
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
1 files changed, 2 insertions, 0 deletions
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 <signal.h>
#endif
+#ifdef MS_WINDOWS
#include "malloc.h" /* for alloca */
+#endif
#ifdef HAVE_LANGINFO_H
#include <locale.h>