From: Victor Stinner Date: Tue, 18 Mar 2014 01:06:38 +0000 (+0100) Subject: Issue #19977, #19036: Always include in pythonrun.c X-Git-Tag: v3.5.0a1~2090 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=518e610977cce63d348d11c4081f9b7af79edd81;p=python Issue #19977, #19036: Always include in pythonrun.c to get LC_CTYPE constant on Windows. --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index bb9f425fb1..3f460562c0 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