From 582cfbbf7489e94494e665092f6587d6160411c6 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sun, 23 Jun 2013 15:53:09 +0200 Subject: import.c does neither need mode_t nor _mkdir() anymore --- Python/import.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Python/import.c b/Python/import.c index fad54e6..b9c5924 100644 --- a/Python/import.c +++ b/Python/import.c @@ -19,14 +19,6 @@ extern "C" { #endif -#ifdef MS_WINDOWS -/* for stat.st_mode */ -typedef unsigned short mode_t; -/* for _mkdir */ -#include -#endif - - #define CACHEDIR "__pycache__" /* See _PyImport_FixupExtensionObject() below */ -- cgit v0.12