From 6238d2b024f061159b2613387ff700695c10deef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sun, 30 Jun 2002 15:26:10 +0000 Subject: Patch #569753: Remove support for WIN16. Rename all occurrences of MS_WIN32 to MS_WINDOWS. --- Python/pythonrun.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 324bc89506..63e0e8e766 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -17,7 +17,7 @@ #include #endif -#ifdef MS_WIN32 +#ifdef MS_WINDOWS #undef BYTE #include "windows.h" #endif @@ -1272,14 +1272,14 @@ Py_FatalError(char *msg) #ifdef macintosh for (;;); #endif -#ifdef MS_WIN32 +#ifdef MS_WINDOWS OutputDebugString("Fatal Python error: "); OutputDebugString(msg); OutputDebugString("\n"); #ifdef _DEBUG DebugBreak(); #endif -#endif /* MS_WIN32 */ +#endif /* MS_WINDOWS */ abort(); } -- cgit v1.2.1