diff options
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_localemodule.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c index 9f185be..2cfda88 100644 --- a/Modules/_localemodule.c +++ b/Modules/_localemodule.c @@ -29,15 +29,15 @@ This software comes with no warranty. Use at your own risk. #include <wchar.h> #endif +#if defined(__APPLE__) +#include "pymactoolbox.h" +#endif + #if defined(MS_WINDOWS) #define WIN32_LEAN_AND_MEAN #include <windows.h> #endif -#if defined(__APPLE__) -#include "macglue.h" -#endif - #ifdef RISCOS char *strdup(const char *); #endif |