Rationalized MS ifdefs
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 1da9d9e..7714248 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -44,7 +44,7 @@
 #include <signal.h>
 #endif
 
-#ifdef NT
+#ifdef MS_WIN32
 #undef BYTE
 #undef arglist
 #include "windows.h"
@@ -562,7 +562,7 @@
 #ifdef macintosh
 	for (;;);
 #endif
-#ifdef NT
+#ifdef MS_WIN32
 	OutputDebugString("Fatal Python error:");
 	OutputDebugString(msg);
 	OutputDebugString("\n");