diff options
author | Guido van Rossum <guido@python.org> | 1996-10-22 17:57:23 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-10-22 17:57:23 (GMT) |
commit | a31e084136a52adc11c56fc971a7802c565448b7 (patch) | |
tree | d3a19c0e350f29b7214e85e31016de3b7293cd2e /PC | |
parent | 84872293dd94067a3dec8036466073520125e110 (diff) | |
download | cpython-a31e084136a52adc11c56fc971a7802c565448b7.zip cpython-a31e084136a52adc11c56fc971a7802c565448b7.tar.gz cpython-a31e084136a52adc11c56fc971a7802c565448b7.tar.bz2 |
It turns out that VC1.5 does not necessarily define _WINDOWS.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/PC/config.h b/PC/config.h index d360ae4..0247cef 100644 --- a/PC/config.h +++ b/PC/config.h @@ -93,10 +93,8 @@ typedef int pid_t; #if defined(_MSC_VER) && _MSC_VER <= 850 /* Start of defines for 16-bit Windows using VC++ 1.5 */ #define COMPILER "[MSC 16-bit]" -#ifdef _WINDOWS #define MS_WIN16 #define MS_WINDOWS -#endif #define PYTHONPATH ".;.\\lib;.\\lib\\win;.\\lib\\dos_8x3" #define IMPORT_8x3_NAMES typedef int pid_t; |