From 518e610977cce63d348d11c4081f9b7af79edd81 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 18 Mar 2014 02:06:38 +0100 Subject: Issue #19977, #19036: Always include in pythonrun.c to get LC_CTYPE constant on Windows. --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/pythonrun.c b/Python/pythonrun.c index bb9f425..3f46056 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -15,6 +15,7 @@ #include "ast.h" #include "marshal.h" #include "osdefs.h" +#include #ifdef HAVE_SIGNAL_H #include @@ -25,7 +26,6 @@ #endif #ifdef HAVE_LANGINFO_H -#include #include #endif -- cgit v0.12