Rationalize MS #ifdefs
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index 4d6a6f9..5f5b859 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -924,7 +924,7 @@
   data = Py_BuildValue ("(OO)", func, file);
 
 #if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001
-#ifdef NT
+#ifdef MS_WINDOWS
   /* We assume this is a socket... */
   tfile = Tcl_GetFile((ClientData)id, TCL_WIN_SOCKET);
 #else
@@ -959,7 +959,7 @@
     return NULL;
 
 #if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001
-#ifdef NT
+#ifdef MS_WINDOWS
   /* We assume this is a socket... */
   tfile = Tcl_GetFile((ClientData)id, TCL_WIN_SOCKET);
 #else