diff options
author | Guido van Rossum <guido@python.org> | 1996-09-11 23:12:24 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-09-11 23:12:24 +0000 |
commit | ee9400a93876280f80369da6634208d23af522b1 (patch) | |
tree | e5a6a2345ee760a99801e87aa2da1111f3c7b4ac /Python/pythonrun.c | |
parent | 2aacbea223f3f477cd97db9be9838a3ac3417767 (diff) | |
download | cpython-ee9400a93876280f80369da6634208d23af522b1.tar.gz |
Rationalized MS ifdefs
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 <signal.h> #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"); |