diff options
author | Guido van Rossum <guido@python.org> | 1996-09-11 23:12:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-09-11 23:12:24 (GMT) |
commit | 9b38a145e2ee72dc3ff3300a3c13e358fee1495d (patch) | |
tree | 0a07618564585864da1eb3c21b559c02f8bd2bf7 /Python/pythonrun.c | |
parent | d4ab3cde8e75015ccbf38274ea57830542f3f472 (diff) | |
download | cpython-9b38a145e2ee72dc3ff3300a3c13e358fee1495d.zip cpython-9b38a145e2ee72dc3ff3300a3c13e358fee1495d.tar.gz cpython-9b38a145e2ee72dc3ff3300a3c13e358fee1495d.tar.bz2 |
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 1da9d9e..7714248 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"); |