From 9b38a145e2ee72dc3ff3300a3c13e358fee1495d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 11 Sep 1996 23:12:24 +0000 Subject: Rationalized MS ifdefs --- Python/pythonrun.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 1da9d9e45e..7714248571 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -44,7 +44,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include #endif -#ifdef NT +#ifdef MS_WIN32 #undef BYTE #undef arglist #include "windows.h" @@ -562,7 +562,7 @@ fatal(msg) #ifdef macintosh for (;;); #endif -#ifdef NT +#ifdef MS_WIN32 OutputDebugString("Fatal Python error:"); OutputDebugString(msg); OutputDebugString("\n"); -- cgit v1.2.1