From 361dcdcefc80f5729ed18ac0ef73327794fbf400 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 15 Apr 2020 03:24:57 +0200 Subject: bpo-40268: Remove unused osdefs.h includes (GH-19532) When the include is needed, add required symbol in a comment. --- Modules/posixmodule.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Modules/posixmodule.c') diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index f5beb09240..89f9757c51 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -312,11 +312,11 @@ extern char *ctermid_r(char *); #ifndef IO_REPARSE_TAG_MOUNT_POINT #define IO_REPARSE_TAG_MOUNT_POINT (0xA0000003L) #endif -#include "osdefs.h" +#include "osdefs.h" // SEP #include #include -#include /* for ShellExecute() */ -#include /* for UNLEN */ +#include // ShellExecute() +#include // UNLEN #define HAVE_SYMLINK #endif /* _MSC_VER */ -- cgit v1.2.1