From: Christian Heimes Date: Sun, 23 Jun 2013 13:53:09 +0000 (+0200) Subject: import.c does neither need mode_t nor _mkdir() anymore X-Git-Tag: v3.4.0a1~418 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=582cfbbf7489e94494e665092f6587d6160411c6;p=python import.c does neither need mode_t nor _mkdir() anymore --- diff --git a/Python/import.c b/Python/import.c index fad54e66ce..b9c5924887 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 */