In NT, write fatal() msg to debugging device
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index e46a526..96f385f 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -52,6 +52,11 @@
 #include <SIOUX.h>
 #endif
 
+#ifdef NT
+#undef BYTE
+#include "windows.h"
+#endif
+
 extern char *getpythonpath();
 
 extern grammar gram; /* From graminit.c */
@@ -563,6 +568,11 @@
 #ifdef macintosh
 	for (;;);
 #endif
+#ifdef NT
+	OutputDebugString("Fatal Python error:");
+	OutputDebugString(msg);
+	OutputDebugString("\n");
+#endif
 	abort();
 }