]> granicus.if.org Git - python/commitdiff
Issue #19036: Including locale.h should not depend on HAVE_LANGINFO_H.
authorStefan Krah <skrah@bytereef.org>
Mon, 20 Jan 2014 14:31:08 +0000 (15:31 +0100)
committerStefan Krah <skrah@bytereef.org>
Mon, 20 Jan 2014 14:31:08 +0000 (15:31 +0100)
Misc/ACKS
Python/fileutils.c

index 6dfbd49394824be67741f546b9078c551f777735..ba32f6b1d88af648e0be69da9bbae21ae1cedeed 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -545,6 +545,7 @@ Randall Hopper
 Nadav Horesh
 Alon Horev
 Jan Hosang
+Alan Hourihane
 Ken Howard
 Brad Howes
 Mike Hoy
index dbcb9234e07a6b4767ec71ce801bdbeb32d40ef3..d25111f4bb451713f3965d00e2807d52caf139c5 100644 (file)
@@ -1,11 +1,12 @@
 #include "Python.h"
 #include "osdefs.h"
+#include <locale.h>
+
 #ifdef MS_WINDOWS
 #  include <windows.h>
 #endif
 
 #ifdef HAVE_LANGINFO_H
-#include <locale.h>
 #include <langinfo.h>
 #endif